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::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 = {}) ⇒ SellerLookup

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

Example:

sl = SellerLookup.new( 'A3QFR0K2KCB7EG' )

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



961
962
963
# File 'lib/amazon/aws.rb', line 961

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