Class: Ebay::Product
Instance Method Summary collapse
-
#initialize ⇒ Product
constructor
A new instance of Product.
Methods inherited from Request
Constructor Details
#initialize ⇒ Product
Returns a new instance of Product.
5 6 7 8 9 10 11 12 13 14 |
# File 'lib/ebay/product.rb', line 5 def initialize @host = 'svcs.ebay.com' @path = '/services/marketplacecatalog/ProductService/v1' @sandbox = 'svcs.sandbox.ebay.com' @defaults = { headers: { 'X-EBAY-SOA-SECURITY-APPNAME' => Config.app_id } } end |