send("/easyShip/2022-03-23/timeSlot", [ 'method' => 'POST', 'json' => $body ]); } public function listHandoverSlotsAsync($body = []) { return $this->sendAsync("/easyShip/2022-03-23/timeSlot", [ 'method' => 'POST', 'json' => $body ]); } /** * Operation getScheduledPackage * * @param array $queryParams * - *amazonOrderId* string - An Amazon-defined order identifier. Identifies the order that the seller wants to deliver using Amazon Easy Ship. * - *marketplaceId* string - An identifier for the marketplace in which the seller is selling. * */ public function getScheduledPackage($queryParams = []) { return $this->send("/easyShip/2022-03-23/package", [ 'method' => 'GET', 'query' => $queryParams, ]); } public function getScheduledPackageAsync($queryParams = []) { return $this->sendAsync("/easyShip/2022-03-23/package", [ 'method' => 'GET', 'query' => $queryParams, ]); } /** * Operation createScheduledPackage * */ public function createScheduledPackage($body = []) { return $this->send("/easyShip/2022-03-23/package", [ 'method' => 'POST', 'json' => $body ]); } public function createScheduledPackageAsync($body = []) { return $this->sendAsync("/easyShip/2022-03-23/package", [ 'method' => 'POST', 'json' => $body ]); } /** * Operation updateScheduledPackages * */ public function updateScheduledPackages($body = []) { return $this->send("/easyShip/2022-03-23/package", [ 'method' => 'PATCH', 'json' => $body ]); } public function updateScheduledPackagesAsync($body = []) { return $this->sendAsync("/easyShip/2022-03-23/package", [ 'method' => 'PATCH', 'json' => $body ]); } }