Class: Amazon::AWS::TransactionLookup

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

Overview

Search for information on previously completed purchases.

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(transaction_id) ⇒ TransactionLookup

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.



1242
1243
1244
# File 'lib/ruby-paa/aws.rb', line 1242

def initialize(transaction_id)
 super( { 'TransactionId' => transaction_id } )
end