Class | Amazon::AWS::TransactionLookup |
In: |
lib/amazon/aws.rb
|
Parent: | Operation |
Return information on an already completed purchase. transaction_id is actually the order number that is created when you place an order on Amazon.
Example:
tl = TransactionLookup.new( '103-5663398-5028241' )
In the above example, we retrieve the details of order number 103-5663398-5028241.
# File lib/amazon/aws.rb, line 1245 def initialize(transaction_id) super( { 'TransactionId' => transaction_id } ) end