Sha256: dc0196acd3937dce653c1cbf62c016a12ab04410eee53ec84190c869ab3fa009

Contents?: true

Size: 653 Bytes

Versions: 1

Compression:

Stored size: 653 Bytes

Contents

module MWS
  module API
    class Products < Base
      Actions = [:list_matching_products, :get_matching_product, :get_matching_product_for_id,
                 :get_competitive_pricing_for_SKU, :get_competitive_pricing_for_ASIN,
                 :get_lowest_offer_listings_for_SKU, :get_lowest_offer_listings_for_ASIN,
                 :get_my_price_for_SKU, :get_my_price_for_ASIN,
                 :get_product_categories_for_SKU, :get_product_categories_for_ASIN,
                 :get_service_status]

      def initialize(connection)
        @uri = "/Products/2011-10-01"
        @version = "2011-10-01"
        super
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mws-rb-0.0.1 lib/mws-rb/api/products.rb