/**
  * List Inbound Shipments
  * Get the first set of inbound shipments created by a Seller according to 
  * the specified shipment status or the specified shipment Id. A NextToken 
  * is also returned to further iterate through the Seller's remaining 
  * shipments. If a NextToken is not returned, it indicates the end-of-data.
  * At least one of ShipmentStatusList and ShipmentIdList must be passed in. 
  * if both are passed in, then only shipments that match the specified 
  * shipment Id and specified shipment status will be returned.
  * the LastUpdatedBefore and LastUpdatedAfter are optional, they are used 
  * to filter results based on last update time of the shipment.
  *
  * @param mixed $request array of parameters for FBAInboundServiceMWS_Model_ListInboundShipments request or FBAInboundServiceMWS_Model_ListInboundShipments object itself
  * @see FBAInboundServiceMWS_Model_ListInboundShipments
  * @return FBAInboundServiceMWS_Model_ListInboundShipmentsResponse
  *
  * @throws FbaInbound_Exception
  */
 public function listInboundShipments($request)
 {
     //require_once (dirname(__FILE__) . '/Model/ListInboundShipmentsResponse.php');
     return FBAInboundServiceMWS_Model_ListInboundShipmentsResponse::fromXML($this->_invoke('ListInboundShipments'));
 }
Example #2
0
 /**
  * List Inbound Shipments
  * Get the first set of inbound shipments created by a Seller according to
  * the specified shipment status or the specified shipment Id. A NextToken
  * is also returned to further iterate through the Seller's remaining
  * shipments. If a NextToken is not returned, it indicates the end-of-data.
  * At least one of ShipmentStatusList and ShipmentIdList must be passed in.
  * if both are passed in, then only shipments that match the specified
  * shipment Id and specified shipment status will be returned.
  * the LastUpdatedBefore and LastUpdatedAfter are optional, they are used
  * to filter results based on last update time of the shipment.
  *
  * @param mixed $request array of parameters for FBAInboundServiceMWS_Model_ListInboundShipments request or FBAInboundServiceMWS_Model_ListInboundShipments object itself
  * @see FBAInboundServiceMWS_Model_ListInboundShipmentsRequest
  * @return FBAInboundServiceMWS_Model_ListInboundShipmentsResponse
  *
  * @throws FBAInboundServiceMWS_Exception
  */
 public function listInboundShipments($request)
 {
     if (!$request instanceof FBAInboundServiceMWS_Model_ListInboundShipmentsRequest) {
         $request = new FBAInboundServiceMWS_Model_ListInboundShipmentsRequest($request);
     }
     $parameters = $request->toQueryParameterArray();
     $parameters['Action'] = 'ListInboundShipments';
     $httpResponse = $this->_invoke($parameters);
     $response = FBAInboundServiceMWS_Model_ListInboundShipmentsResponse::fromXML($httpResponse['ResponseBody']);
     $response->setResponseHeaderMetadata($httpResponse['ResponseHeaderMetadata']);
     return $response;
 }
Example #3
0
 /**
  * List Inbound Shipments
  * Get the first set of inbound shipments created by a Seller according to
  * the specified shipment status or the specified shipment Id. A NextToken
  * is also returned to further iterate through the Seller's remaining
  * shipments. If a NextToken is not returned, it indicates the end-of-data.
  * At least one of ShipmentStatusList and ShipmentIdList must be passed in.
  * if both are passed in, then only shipments that match the specified
  * shipment Id and specified shipment status will be returned.
  * the LastUpdatedBefore and LastUpdatedAfter are optional, they are used
  * to filter results based on last update time of the shipment.
  *
  * @param mixed $request array of parameters for FBAInboundServiceMWS_Model_ListInboundShipments request or FBAInboundServiceMWS_Model_ListInboundShipments object itself
  * @see FBAInboundServiceMWS_Model_ListInboundShipments
  * @return FBAInboundServiceMWS_Model_ListInboundShipmentsResponse
  *
  * @throws FBAInboundServiceMWS_Exception
  */
 public function listInboundShipments($request)
 {
     return FBAInboundServiceMWS_Model_ListInboundShipmentsResponse::fromXML($this->_invoke('ListInboundShipments'));
 }