Class: PayPal::SDK::ButtonManagerRails::DataTypes::PaymentTransactionSearchResultType

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

Overview

PaymentTransactionSearchResultType Results from a PaymentTransaction search

Class Method Summary collapse

Class Method Details

.load_membersObject



1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
# File 'lib/paypal-sdk/button_manager_rails/data_types.rb', line 1555

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