Class: PayPal::SDK::AdaptivePayments::DataTypes::PaymentInfo

Inherits:
DataType
  • Object
show all
Defined in:
lib/paypal-sdk/adaptive_payments/data_types.rb

Overview

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.

Class Method Summary collapse

Class Method Details

.load_membersObject



447
448
449
450
451
452
453
454
455
456
# 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