Class: PayPal::SDK::ButtonManager::DataTypes::BankAccountDetailsType

Inherits:
DataType
  • Object
show all
Defined in:
lib/paypal-sdk/button_manager/data_types.rb

Overview

BankAccountDetailsType

Class Method Summary collapse

Class Method Details

.load_membersObject



2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
# File 'lib/paypal-sdk/button_manager/data_types.rb', line 2446

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