public ListInventorySupplyByNextTokenResponse InvokeListInventorySupplyByNextToken()
 {
     // Create a request.
     ListInventorySupplyByNextTokenRequest request = new ListInventorySupplyByNextTokenRequest();
     string sellerId = "example";
     request.SellerId = sellerId;
     string mwsAuthToken = "example";
     request.MWSAuthToken = mwsAuthToken;
     string marketplace = "example";
     request.Marketplace = marketplace;
     string supplyRegion = "example";
     request.SupplyRegion = supplyRegion;
     string nextToken = "example";
     request.NextToken = nextToken;
     return this.client.ListInventorySupplyByNextToken(request);
 }
        private ListInventorySupplyByNextTokenResponse InvokeListInventoryByNextToken(string nextToken)
        {
            ListInventorySupplyByNextTokenRequest request = new ListInventorySupplyByNextTokenRequest();
            request.SellerId = _sellerId;
            request.NextToken = nextToken;

            return _client.ListInventorySupplyByNextToken(request);
        }