lib/mws/fulfillment_inventory.rb in peddler-0.7.5 vs lib/mws/fulfillment_inventory.rb in peddler-0.7.6
- old
+ new
@@ -9,7 +9,27 @@
# channels.
#
# @todo Not implemented
class FulfillmentInventory < ::Peddler::Client
path '/FulfillmentInventory/2010-10-01'
+
+ # Returns information about the availability of a seller's inventory
+ def list_inventory_supply
+ raise NotImplementedError
+ end
+
+ # Returns the next page of information about the availability of a seller's
+ # inventory
+ def list_inventory_supply_by_next_token
+ raise NotImplementedError
+ end
+
+ # Gets the operational status of the API
+ #
+ # @see http://docs.developer.amazonservices.com/en_US/fba_inventory/MWS_GetServiceStatus.html
+ # @return [Peddler::XMLParser]
+ def get_service_status
+ operation('GetServiceStatus')
+ run
+ end
end
end