Class: PayPal::SDK::Invoice::DataTypes::PayPalPaymentDetailsType

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

Overview

PayPal payment details about the invoice.

Class Method Summary collapse

Class Method Details

.load_membersObject



409
410
411
412
413
414
415
416
417
418
# File 'lib/paypal-sdk/invoice/data_types.rb', line 409

def self.load_members
  # Transaction ID of the PayPal payment. 
  object_of :transactionID, String, :required => true
  # Date when the invoice was paid. 
  object_of :date, DateTime
  # Payment amount. If empty, it means a full payment. 
  object_of :amount, Float
  # Payment Transaction Type. 
  object_of :transactionType, PaymentTransactionType, :required => true
end