class PayPal::SDK::ButtonManagerRails::DataTypes::BankAccountDetailsType

BankAccountDetailsType

Public Class Methods

load_members() click to toggle source
# File lib/paypal-sdk/button_manager_rails/data_types.rb, line 2481
def self.load_members
  # Name of bank Character length and limitations: 192 alphanumeric characters
  object_of :Name, String, :namespace => :ebl
  # Type of bank account: Checking or Savings
  object_of :Type, BankAccountTypeType, :namespace => :ebl
  # Merchantâs bank routing number Character length and limitations: 23 alphanumeric characters
  object_of :RoutingNumber, String, :namespace => :ebl
  # Merchantâs bank account number Character length and limitations: 256 alphanumeric characters
  object_of :AccountNumber, String, :namespace => :ebl
end