Class: PayPal::SDK::Merchant::DataTypes::RefundTransactionResponseType
- Inherits:
-
AbstractResponseType
- Object
- Core::API::DataTypes::Base
- DataType
- AbstractResponseType
- PayPal::SDK::Merchant::DataTypes::RefundTransactionResponseType
- Defined in:
- lib/paypal-sdk/merchant/data_types.rb
Overview
Unique transaction ID of the refund. Character length and limitations:17 single-byte characters
Class Method Summary collapse
Class Method Details
.load_members ⇒ Object
3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 |
# File 'lib/paypal-sdk/merchant/data_types.rb', line 3824 def self.load_members # Unique transaction ID of the refund. Character length and limitations:17 single-byte characters object_of :RefundTransactionID, String, :namespace => :ns # Amount subtracted from PayPal balance of original recipient of payment to make this refund object_of :NetRefundAmount, BasicAmountType, :namespace => :ns # Transaction fee refunded to original recipient of payment object_of :FeeRefundAmount, BasicAmountType, :namespace => :ns # Amount of money refunded to original payer object_of :GrossRefundAmount, BasicAmountType, :namespace => :ns # Total of all previous refunds object_of :TotalRefundedAmount, BasicAmountType, :namespace => :ns # Contains Refund Payment status information. object_of :RefundInfo, RefundInfoType, :namespace => :ebl # Any general information like offer details that is reinstated or any other marketing data object_of :ReceiptData, String, :namespace => :ns # Return msgsubid back to merchant object_of :MsgSubID, String, :namespace => :ns end |