* Uncomment to try out Mock Service that simulates FBAInboundServiceMWS
 * responses without calling FBAInboundServiceMWS service.
 *
 * Responses are loaded from local XML files. You can tweak XML files to
 * experiment with various outputs during development
 *
 * XML files available under FBAInboundServiceMWS/Mock tree
 *
 ***********************************************************************/
// $service = new FBAInboundServiceMWS_Mock();
/************************************************************************
 * Setup request parameters and uncomment invoke to try out
 * sample for Get Pallet Labels Action
 ***********************************************************************/
// @TODO: set request. Action can be passed as FBAInboundServiceMWS_Model_GetPalletLabels
$request = new FBAInboundServiceMWS_Model_GetPalletLabelsRequest();
$request->setSellerId(MERCHANT_ID);
// object or array of parameters
invokeGetPalletLabels($service, $request);
/**
 * Get Get Pallet Labels Action Sample
 * Gets competitive pricing and related information for a product identified by
 * the MarketplaceId and ASIN.
 *
 * @param FBAInboundServiceMWS_Interface $service instance of FBAInboundServiceMWS_Interface
 * @param mixed $request FBAInboundServiceMWS_Model_GetPalletLabels or array of parameters
 */
function invokeGetPalletLabels(FBAInboundServiceMWS_Interface $service, $request)
{
    try {
        $response = $service->GetPalletLabels($request);
 /**
  * Get Pallet Labels
  * Retrieves the PDF-formatted pallet label data for the pallets in an LTL shipment. These labels
  *     include relevant data for shipments being sent to Amazon Fulfillment Centers. The PDF data will be 
  *     ZIP'd and then it will be encoded as a Base64 string, and MD5 hash is included with the response to 
  *     validate the label data which will be encoded as Base64. The language of the address and FC prep 
  *     instructions sections of the labels are determined by the marketplace in which the request is being 
  *     made and the marketplace of the destination FC, respectively.
  *
  * @param mixed $request array of parameters for FBAInboundServiceMWS_Model_GetPalletLabels request or FBAInboundServiceMWS_Model_GetPalletLabels object itself
  * @see FBAInboundServiceMWS_Model_GetPalletLabelsRequest
  * @return FBAInboundServiceMWS_Model_GetPalletLabelsResponse
  *
  * @throws FBAInboundServiceMWS_Exception
  */
 public function getPalletLabels($request)
 {
     if (!$request instanceof FBAInboundServiceMWS_Model_GetPalletLabelsRequest) {
         require_once dirname(__FILE__) . '/Model/GetPalletLabelsRequest.php';
         $request = new FBAInboundServiceMWS_Model_GetPalletLabelsRequest($request);
     }
     $parameters = $request->toQueryParameterArray();
     $parameters['Action'] = 'GetPalletLabels';
     $httpResponse = $this->_invoke($parameters);
     require_once dirname(__FILE__) . '/Model/GetPalletLabelsResponse.php';
     $response = FBAInboundServiceMWS_Model_GetPalletLabelsResponse::fromXML($httpResponse['ResponseBody']);
     $response->setResponseHeaderMetadata($httpResponse['ResponseHeaderMetadata']);
     return $response;
 }