public ListRecommendationsByNextTokenResponse InvokeListRecommendationsByNextToken()
        {
            // Create a request.
            ListRecommendationsByNextTokenRequest request = new ListRecommendationsByNextTokenRequest();
            string sellerId = "example";

            request.SellerId = sellerId;
            string mwsAuthToken = "example";

            request.MWSAuthToken = mwsAuthToken;
            string nextToken = "example";

            request.NextToken = nextToken;
            return(this.client.ListRecommendationsByNextToken(request));
        }
Esempio n. 2
0
 public ListRecommendationsByNextTokenResponse ListRecommendationsByNextToken(ListRecommendationsByNextTokenRequest request)
 {
     return(newResponse <ListRecommendationsByNextTokenResponse>());
 }
Esempio n. 3
0
 public ListRecommendationsByNextTokenResponse ListRecommendationsByNextToken(ListRecommendationsByNextTokenRequest request)
 {
     return(connection.Call(
                new MWSRecommendationsSectionServiceClient.Request <ListRecommendationsByNextTokenResponse>("ListRecommendationsByNextToken", typeof(ListRecommendationsByNextTokenResponse), servicePath),
                request));
 }