Class: PayPal::SDK::ButtonManager::DataTypes::PaymentTransactionSearchResultType

Inherits:
DataType
  • Object
show all
Defined in:
lib/paypal-sdk/button_manager/data_types.rb

Overview

PaymentTransactionSearchResultType Results from a PaymentTransaction search

Class Method Summary collapse

Class Method Details

.load_membersObject



1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
# File 'lib/paypal-sdk/button_manager/data_types.rb', line 1532

def self.load_members
  # The date and time (in UTC/GMT format) the transaction occurred
  object_of :Timestamp, DateTime, :namespace => :ebl
  # The time zone of the transaction 
  object_of :Timezone, String, :namespace => :ebl
  # The type of the transaction
  object_of :Type, String, :namespace => :ebl
  # The email address of the payer
  object_of :Payer, String, :namespace => :ebl
  # Display name of the payer
  object_of :PayerDisplayName, String, :namespace => :ebl
  # The transaction ID of the seller
  object_of :TransactionID, String, :namespace => :ebl
  # The status of the transaction
  object_of :Status, String, :namespace => :ebl
  # The total gross amount charged, including any profile shipping cost and taxes
  object_of :GrossAmount, BasicAmountType, :namespace => :ebl
  # The fee that PayPal charged for the transaction 
  object_of :FeeAmount, BasicAmountType, :namespace => :ebl
  # The net amount of the transaction 
  object_of :NetAmount, BasicAmountType, :namespace => :ebl
end