Class: PayPal::SDK::AdaptivePayments::DataTypes::FundingPlan

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

Overview

FundingPlan describes the funding sources to be used for a specific payment.

Class Method Summary collapse

Class Method Details

.load_membersObject



358
359
360
361
362
363
364
365
# File 'lib/paypal-sdk/adaptive_payments/data_types.rb', line 358

def self.load_members
  object_of :fundingPlanId, String, :required => true
  object_of :fundingAmount, CurrencyType, :required => true
  object_of :backupFundingSource, FundingSource
  object_of :senderFees, CurrencyType
  object_of :currencyConversion, CurrencyConversion
  array_of :charge, FundingPlanCharge, :required => true
end