class PayPal::SDK::ButtonManagerRails::DataTypes::BillingApprovalDetailsType

The Type of Approval requested - Billing Agreement or Profile

Public Class Methods

load_members() click to toggle source
# File lib/paypal-sdk/button_manager_rails/data_types.rb, line 1013
def self.load_members
  # The Type of Approval requested - Billing Agreement or Profile
  object_of :ApprovalType, ApprovalTypeType, :namespace => :ebl, :required => true
  # The Approval subtype - Must be MerchantInitiatedBilling for BillingAgreement ApprovalType
  object_of :ApprovalSubType, ApprovalSubTypeType, :namespace => :ebl
  # Description about the Order
  object_of :OrderDetails, OrderDetailsType, :namespace => :ebl
  # Directives about the type of payment
  object_of :PaymentDirectives, PaymentDirectivesType, :namespace => :ebl
  # Client may pass in its identification of this Billing Agreement. It used for the client's tracking purposes.
  object_of :Custom, String, :namespace => :ebl
end