public ListFinancialEventsByNextTokenResponse InvokeListFinancialEventsByNextToken()
        {
            // Create a request.
            ListFinancialEventsByNextTokenRequest request = new ListFinancialEventsByNextTokenRequest();
            string sellerId = "example";

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

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

            request.NextToken = nextToken;
            return(this.client.ListFinancialEventsByNextToken(request));
        }
 public ListFinancialEventsByNextTokenResponse ListFinancialEventsByNextToken(ListFinancialEventsByNextTokenRequest request)
 {
     return(connection.Call(
                new MWSFinancesServiceClient.Request <ListFinancialEventsByNextTokenResponse>("ListFinancialEventsByNextToken", typeof(ListFinancialEventsByNextTokenResponse), servicePath),
                request));
 }
Example #3
0
 public ListFinancialEventsByNextTokenResponse ListFinancialEventsByNextToken(ListFinancialEventsByNextTokenRequest request)
 {
     return(newResponse <ListFinancialEventsByNextTokenResponse>());
 }