Class: PayPal::SDK::ButtonManager::DataTypes::RefundTransactionResponseType

Inherits:
AbstractResponseType show all
Defined in:
lib/paypal-sdk/button_manager/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_membersObject



3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
# File 'lib/paypal-sdk/button_manager/data_types.rb', line 3660

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