Class: PayPal::SDK::Merchant::DataTypes::BillingPeriodDetailsType
- Inherits:
-
DataType
- Object
- Core::API::DataTypes::Base
- DataType
- PayPal::SDK::Merchant::DataTypes::BillingPeriodDetailsType
- Defined in:
- lib/paypal-sdk/merchant/data_types.rb
Overview
Unit of meausre for billing cycle
Class Method Summary collapse
Class Method Details
.load_members ⇒ Object
2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 |
# File 'lib/paypal-sdk/merchant/data_types.rb', line 2705 def self.load_members # Unit of meausre for billing cycle object_of :BillingPeriod, BillingPeriodType, :namespace => :ebl, :required => true # Number of BillingPeriod that make up one billing cycle object_of :BillingFrequency, Integer, :namespace => :ebl, :required => true # Total billing cycles in this portion of the schedule object_of :TotalBillingCycles, Integer, :namespace => :ebl # Amount to charge object_of :Amount, BasicAmountType, :namespace => :ebl, :required => true # Additional shipping amount to charge object_of :ShippingAmount, BasicAmountType, :namespace => :ebl # Additional tax amount to charge object_of :TaxAmount, BasicAmountType, :namespace => :ebl end |