/**
  * Get Lowest Offer Listings For ASIN
  * Gets some of the lowest prices based on the product identified by the given
  * MarketplaceId and ASIN.
  *
  * @param mixed $request array of parameters for GetLowestOfferListingsForASIN request or GetLowestOfferListingsForASIN object itself
  *
  * @see GetLowestOfferListingsForASIN
  * @return GetLowestOfferListingsForASINResponse
  *
  * @throws MwsProductsException
  */
 public function getLowestOfferListingsForASIN($request)
 {
     return GetLowestOfferListingsForASINResponse::fromXML($this->_invoke('GetLowestOfferListingsForASIN'));
 }
示例#2
0
 /**
  * Get Lowest Offer Listings For ASIN
  * Gets some of the lowest prices based on the product identified by the given
  * MarketplaceId and ASIN.
  *
  * @param mixed $request array of parameters for GetLowestOfferListingsForASIN request or GetLowestOfferListingsForASIN object itself
  *
  * @see GetLowestOfferListingsForASINRequest
  * @return Model\GetLowestOfferListingsForASINResponse
  *
  * @throws MwsProductsException
  */
 public function getLowestOfferListingsForASIN($request)
 {
     if (!$request instanceof Model\GetLowestOfferListingsForASINRequest) {
         $request = new Model\GetLowestOfferListingsForASINRequest($request);
     }
     $parameters = $request->toQueryParameterArray();
     $parameters['Action'] = 'GetLowestOfferListingsForASIN';
     $httpResponse = $this->_invoke($parameters);
     $response = Model\GetLowestOfferListingsForASINResponse::fromXML($httpResponse['ResponseBody']);
     $response->setResponseHeaderMetadata($httpResponse['ResponseHeaderMetadata']);
     return $response;
 }