public ListMarketplaceParticipationsResponse InvokeListMarketplaceParticipations(string sellerId, string authToken)
        {
            ListMarketplaceParticipationsRequest request = new ListMarketplaceParticipationsRequest();

            request.SellerId     = sellerId;
            request.MWSAuthToken = authToken;
            return(this.client.ListMarketplaceParticipations(request));
        }
Ejemplo n.º 2
0
        public ListMarketplaceParticipationsResponse InvokeListMarketplaceParticipations()
        {
            // Create a request.
            ListMarketplaceParticipationsRequest request = new ListMarketplaceParticipationsRequest();
            string sellerId = "example";

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

            request.MWSAuthToken = mwsAuthToken;
            return(this.client.ListMarketplaceParticipations(request));
        }
Ejemplo n.º 3
0
 public ListMarketplaceParticipationsResponse ListMarketplaceParticipations(ListMarketplaceParticipationsRequest request)
 {
     return(connection.Call(
                new MarketplaceWebServiceSellersClient.Request <ListMarketplaceParticipationsResponse>("ListMarketplaceParticipations", typeof(ListMarketplaceParticipationsResponse), servicePath),
                request));
 }
 public ListMarketplaceParticipationsResponse ListMarketplaceParticipations(ListMarketplaceParticipationsRequest request)
 {
     return(newResponse <ListMarketplaceParticipationsResponse>());
 }