Class: CheckoutSdk::Accounts::InstrumentDetailsAch
- Inherits:
-
InstrumentDetails
- Object
- InstrumentDetails
- CheckoutSdk::Accounts::InstrumentDetailsAch
- Defined in:
- lib/checkout_sdk/accounts/instrument_details_ach.rb
Overview
ACH bank-account instrument details. Maps swagger PlatformsInstrumentDetailsAch.
All three attributes are required.
Instance Attribute Summary collapse
-
#account_number ⇒ String
The alphanumeric value that identifies the account.
-
#account_type ⇒ String
The type of bank account.
-
#routing_number ⇒ String
The 9-digit American Bankers Association (ABA) routing number that identifies the financial institution.
Instance Attribute Details
#account_number ⇒ String
Returns The alphanumeric value that identifies the account.
15 16 17 18 19 |
# File 'lib/checkout_sdk/accounts/instrument_details_ach.rb', line 15 class InstrumentDetailsAch < InstrumentDetails attr_accessor :account_number, :routing_number, :account_type end |
#account_type ⇒ String
Returns The type of bank account. One of savings, checking.
15 16 17 18 19 |
# File 'lib/checkout_sdk/accounts/instrument_details_ach.rb', line 15 class InstrumentDetailsAch < InstrumentDetails attr_accessor :account_number, :routing_number, :account_type end |
#routing_number ⇒ String
Returns The 9-digit American Bankers Association (ABA) routing number that identifies the financial institution.
15 16 17 18 19 |
# File 'lib/checkout_sdk/accounts/instrument_details_ach.rb', line 15 class InstrumentDetailsAch < InstrumentDetails attr_accessor :account_number, :routing_number, :account_type end |