lib/mws/fulfillment_inventory/client.rb in peddler-1.2.0 vs lib/mws/fulfillment_inventory/client.rb in peddler-1.3.0

- old
+ new

@@ -7,17 +7,17 @@ # Fulfillment Inventory API reports real-time availability information for # your Amazon Fulfillment Network inventory regardless of whether you are # selling your inventory on Amazon's retail web site or through other retail # channels. class Client < ::Peddler::Client - version "2010-10-01" + version '2010-10-01' path "/FulfillmentInventory/#{version}" # Returns information about the availability of a seller's inventory # # @see http://docs.developer.amazonservices.com/en_US/fba_inventory/FBAInventory_ListInventorySupply.html - # @param opts [Hash] + # @param [Hash] opts # @option opts [Array<String>, String] :seller_skus # @option opts [String, #iso8601] :query_start_date_time # @option opts [String] :response_group # @return [Peddler::XMLParser] def list_inventory_supply(opts = {}) @@ -30,10 +30,10 @@ # Returns the next page of information about the availability of a # seller's inventory # # @see http://docs.developer.amazonservices.com/en_US/fba_inventory/FBAInventory_ListInventorySupplyByNextToken.html - # @param next_token [String] + # @param [String] next_token # @return [Peddler::XMLParser] def list_inventory_supply_by_next_token(next_token) operation('ListInventorySupplyByNextToken') .add('NextToken' => next_token)