Class: Amazon::AWS::SellerListingLookup

Inherits:
ItemLookup show all
Defined in:
lib/ruby-paa/aws.rb

Overview

Return specified items in a seller’s store.

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, id_type, parameters) ⇒ SellerListingLookup

Look up a specific item for sale by a specific seller. id_type is the type of identifier and parameters is a hash that identifies the item to be located and narrows the scope of the search.

Example:

sll = SellerListingLookup.new( 'AP8U6Y3PYQ9VO', 'ASIN',

{ ‘Id’ => ‘B0009RRRC8’ } )

In the above example, we search seller AP8U6Y3PYQ9VO’s listings to find items for sale with the ASIN B0009RRRC8.



1028
1029
1030
# File 'lib/ruby-paa/aws.rb', line 1028

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