Class: PayPal::SDK::ButtonManagerRails::DataTypes::CreateRecurringPaymentsProfileRequestDetailsType
- Inherits:
-
DataType
- Object
- Core::API::DataTypes::Base
- DataType
- PayPal::SDK::ButtonManagerRails::DataTypes::CreateRecurringPaymentsProfileRequestDetailsType
- Defined in:
- lib/paypal-sdk/button_manager_rails/data_types.rb
Overview
Billing Agreement token (required if Express Checkout)
Class Method Summary collapse
Class Method Details
.load_members ⇒ Object
2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 |
# File 'lib/paypal-sdk/button_manager_rails/data_types.rb', line 2712 def self.load_members # Billing Agreement token (required if Express Checkout) object_of :Token, String, :namespace => :ebl # Information about the credit card to be charged (required if Direct Payment) object_of :CreditCard, CreditCardDetailsType, :namespace => :ebl # Customer Information for this Recurring Payments object_of :RecurringPaymentsProfileDetails, RecurringPaymentsProfileDetailsType, :namespace => :ebl, :required => true # Schedule Information for this Recurring Payments object_of :ScheduleDetails, ScheduleDetailsType, :namespace => :ebl, :required => true # Information about the Item Details. array_of :PaymentDetailsItem, PaymentDetailsItemType, :namespace => :ebl end |