Class: Amazon::AWS::SellerLookup

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

Overview

Return information about a specific 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 = {}) ⇒ SellerLookup

Search for the details of a specific seller. seller_id is the Amazon ID of the seller in question and parameters is an optional hash of parameters that further refine the scope of the search.

Example:

sl = SellerLookup.new( 'A3QFR0K2KCB7EG' )

In the above example, we look up the details of the seller with ID A3QFR0K2KCB7EG.



1053
1054
1055
# File 'lib/amazon/aws.rb', line 1053

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