public GetLowestPricedOffersForSKUResponse InvokeGetLowestPricedOffersForSKU()
 {
     // Create a request.
     GetLowestPricedOffersForSKURequest request = new GetLowestPricedOffersForSKURequest();
     
     request.SellerId = sellerId;
     
     request.MWSAuthToken = mwsAuthToken;
     
     request.MarketplaceId = marketplaceId;
     string sellerSKU = "example";
     request.SellerSKU = sellerSKU;
     string itemCondition = "new";
     request.ItemCondition = itemCondition;
     return this.client.GetLowestPricedOffersForSKU(request);
 }
Пример #2
0
 public GetLowestPricedOffersForSKUResponse InvokeGetLowestPricedOffersForSKU(string sellerId, string mwsAuthToken, string marketplaceId, string sellerSKU, string itemCondition, out APIResults results)
 {
     try
     {
         // Create a request.
         GetLowestPricedOffersForSKURequest request = new GetLowestPricedOffersForSKURequest();
         request.SellerId      = sellerId;
         request.MWSAuthToken  = mwsAuthToken;
         request.MarketplaceId = marketplaceId;
         request.SellerSKU     = sellerSKU;
         request.ItemCondition = itemCondition;
         GetLowestPricedOffersForSKUResponse output = this.productClient.GetLowestPricedOffersForSKU(request);
         results = new APIResults((IMWSResponse)output);
         return(output);
     }
     catch (MarketplaceWebServiceProductsException ex)
     {
         results = new APIResults(ex);
         throw ex;
     }
 }
Пример #3
0
 public GetLowestPricedOffersForSKUResponse GetLowestPricedOffersForSKU(GetLowestPricedOffersForSKURequest request)
 {
     return(newResponse <GetLowestPricedOffersForSKUResponse>());
 }
 public GetLowestPricedOffersForSKUResponse GetLowestPricedOffersForSKU(GetLowestPricedOffersForSKURequest request)
 {
     return(connection.Call(
                new MarketplaceWebServiceProductsClient.Request <GetLowestPricedOffersForSKUResponse>("GetLowestPricedOffersForSKU", typeof(GetLowestPricedOffersForSKUResponse), servicePath),
                request));
 }
 public GetLowestPricedOffersForSKUResponse GetLowestPricedOffersForSKU(GetLowestPricedOffersForSKURequest request)
 {
     return(this.connection.Call(
                new ImwsProductsServiceClient.Request <GetLowestPricedOffersForSKUResponse>("GetLowestPricedOffersForSKU", typeof(GetLowestPricedOffersForSKUResponse), this.servicePath),
                request));
 }