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



371
372
373
374
375
376
377
378
# File 'lib/paypal-sdk/invoice/data_types.rb', line 371

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
  # Other payment details. 
  object_of :otherPayment, OtherPaymentDetailsType
end