Class: PayPal::SDK::Merchant::DataTypes::PaymentTransactionSearchResultType
- Inherits:
-
DataType
- Object
- Core::API::DataTypes::Base
- DataType
- PayPal::SDK::Merchant::DataTypes::PaymentTransactionSearchResultType
- Defined in:
- lib/paypal-sdk/merchant/data_types.rb
Overview
PaymentTransactionSearchResultType Results from a PaymentTransaction search
Class Method Summary collapse
Class Method Details
.load_members ⇒ Object
1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 |
# File 'lib/paypal-sdk/merchant/data_types.rb', line 1594 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 |