Class: Amazon::AWS::SellerListingSearch

Inherits:
Operation
  • Object
show all
Defined in:
lib/ruby-paa/aws.rb

Overview

Search for items for sale by a particular seller.

Constant Summary

Constants inherited from Operation

Operation::OPERATIONS

Instance Attribute Summary

Attributes inherited from Operation

#kind, #params, #response_group

Instance Method Summary collapse

Methods inherited from Operation

#batch, #query_parameters, #response_group_orig=

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 an optional hash of parameters that further refine 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.



1005
1006
1007
# File 'lib/ruby-paa/aws.rb', line 1005

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