class PayPal::SDK::ButtonManagerRails::DataTypes::CreateRecurringPaymentsProfileRequestDetailsType
Billing Agreement token (required if Express Checkout)
Public Class Methods
load_members()
click to toggle source
# 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