Class: Amazon::AWS::SellerListingSearch

Inherits:
Operation
  • Object
show all
Defined in:
lib/amazon/aws.rb

Overview

Search for items for sale by a particular seller.

Constant Summary

Constants inherited from Operation

Operation::ALL_PARAMETERS, Operation::OPERATIONS, Operation::OPT_PARAMETERS, Operation::PARAMETERS

Instance Attribute Summary

Attributes inherited from Operation

#kind, #params

Instance Method Summary collapse

Methods inherited from Operation

#batch_parameters

Constructor Details

#initialize(seller_id, parameters) ⇒ SellerListingSearch

Search for items for sale by a particular seller. seller_id is the Amazon seller ID and parameters is a hash of parameters that narrows the scope of the search.

Example:

sls = SellerListingSearch.new( 'A33J388YD2MWJZ',

{ ‘Keywords’ => ‘Killing Joke’ } )

In the above example, we search seller A33J388YD2MWJ’s listings for items with the keywords Killing Joke.



912
913
914
# File 'lib/amazon/aws.rb', line 912

def initialize(seller_id, parameters)
  super( { 'SellerId' => seller_id }.merge( parameters ) )
end