Class: PayPal::SDK::Merchant::DataTypes::BankAccountDetailsType

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

Overview

BankAccountDetailsType

Class Method Summary collapse

Class Method Details

.load_membersObject



2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
# File 'lib/paypal-sdk/merchant/data_types.rb', line 2547

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