class PayPal::SDK::AdaptivePayments::DataTypes::PaymentInfo

PaymentInfo represents the payment attempt made to a Receiver of a PayRequest. If the execution of the payment has not yet completed, there will not be any transaction details.

Public Class Methods

load_members() click to toggle source
# File lib/paypal-sdk/adaptive_payments/data_types.rb, line 447
def self.load_members
  object_of :transactionId, String
  object_of :transactionStatus, String
  object_of :receiver, Receiver, :required => true
  object_of :refundedAmount, Float
  object_of :pendingRefund, Boolean
  object_of :senderTransactionId, String
  object_of :senderTransactionStatus, String
  object_of :pendingReason, String
end