Class: PayPal::SDK::Merchant::DataTypes::PaymentTransactionType
- Inherits:
-
DataType
- Object
- Core::API::DataTypes::Base
- DataType
- PayPal::SDK::Merchant::DataTypes::PaymentTransactionType
- Defined in:
- lib/paypal-sdk/merchant/data_types.rb
Overview
PaymentTransactionType Information about a PayPal payment from the seller side
Class Method Summary collapse
Class Method Details
.load_members ⇒ Object
1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 |
# File 'lib/paypal-sdk/merchant/data_types.rb', line 1663 def self.load_members # Information about the recipient of the payment object_of :ReceiverInfo, ReceiverInfoType, :namespace => :ebl # Information about the payer object_of :PayerInfo, PayerInfoType, :namespace => :ebl # This field is for holding ReferenceId for shippment sent from Merchant to the 3rd Party object_of :TPLReferenceID, String, :namespace => :ebl # Information about the transaction object_of :PaymentInfo, PaymentInfoType, :namespace => :ebl # Information about an individual item in the transaction object_of :PaymentItemInfo, PaymentItemInfoType, :namespace => :ebl # Information about an individual Offer and Coupon information in the transaction object_of :OfferCouponInfo, OfferCouponInfoType, :namespace => :ebl # Information about Secondary Address object_of :SecondaryAddress, AddressType, :namespace => :ebl # Information about the user selected options. object_of :UserSelectedOptions, UserSelectedOptionType, :namespace => :ebl # Information about the Gift message. object_of :GiftMessage, String, :namespace => :ebl # Information about the Gift receipt. object_of :GiftReceipt, String, :namespace => :ebl # Information about the Gift Wrap name. object_of :GiftWrapName, String, :namespace => :ebl # Information about the Gift Wrap amount. object_of :GiftWrapAmount, BasicAmountType, :namespace => :ebl # Information about the Buyer email. object_of :BuyerEmailOptIn, String, :namespace => :ebl # Information about the survey question. object_of :SurveyQuestion, String, :namespace => :ebl # Information about the survey choice selected by the user. array_of :SurveyChoiceSelected, String, :namespace => :ebl end |