Class: PayPal::SDK::Invoice::DataTypes::PaymentDetailsType

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

Overview

Payment details about the invoice.

Class Method Summary collapse

Class Method Details

.load_membersObject



450
451
452
453
454
455
456
457
458
459
460
461
# File 'lib/paypal-sdk/invoice/data_types.rb', line 450

def self.load_members
  # True if the invoice was paid using PayPal. 
  object_of :viaPayPal, Boolean, :required => true
  # PayPal payment details. 
  object_of :paypalPayment, PayPalPaymentDetailsType
  # List of paypal payments. 
  object_of :paypalPayments, PayPalPaymentDetailsListType
  # Other payment details. 
  object_of :otherPayment, OtherPaymentDetailsType
  # Other payment details. 
  object_of :otherPayments, OtherPaymentDetailsListType
end