Class: Stripe::V2::Core::Vault::UsBankAccountService::CreateParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::Vault::UsBankAccountService::CreateParams
- Defined in:
- lib/stripe/services/v2/core/vault/us_bank_account_service.rb
Instance Attribute Summary collapse
-
#account_number ⇒ Object
The account number of the bank account.
-
#bank_account_type ⇒ Object
Closed Enum.
-
#fedwire_routing_number ⇒ Object
The fedwire routing number of the bank account.
-
#routing_number ⇒ Object
The ACH routing number of the bank account.
Instance Method Summary collapse
-
#initialize(account_number: nil, bank_account_type: nil, fedwire_routing_number: nil, routing_number: nil) ⇒ CreateParams
constructor
A new instance of CreateParams.
Methods inherited from RequestParams
Constructor Details
#initialize(account_number: nil, bank_account_type: nil, fedwire_routing_number: nil, routing_number: nil) ⇒ CreateParams
Returns a new instance of CreateParams.
21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/stripe/services/v2/core/vault/us_bank_account_service.rb', line 21 def initialize( account_number: nil, bank_account_type: nil, fedwire_routing_number: nil, routing_number: nil ) @account_number = account_number @bank_account_type = bank_account_type @fedwire_routing_number = fedwire_routing_number @routing_number = routing_number end |
Instance Attribute Details
#account_number ⇒ Object
The account number of the bank account.
13 14 15 |
# File 'lib/stripe/services/v2/core/vault/us_bank_account_service.rb', line 13 def account_number @account_number end |
#bank_account_type ⇒ Object
Closed Enum. The type of the bank account (checking or savings).
15 16 17 |
# File 'lib/stripe/services/v2/core/vault/us_bank_account_service.rb', line 15 def bank_account_type @bank_account_type end |
#fedwire_routing_number ⇒ Object
The fedwire routing number of the bank account. Note that certain banks have the same ACH and wire routing number.
17 18 19 |
# File 'lib/stripe/services/v2/core/vault/us_bank_account_service.rb', line 17 def fedwire_routing_number @fedwire_routing_number end |
#routing_number ⇒ Object
The ACH routing number of the bank account. Note that certain banks have the same ACH and wire routing number.
19 20 21 |
# File 'lib/stripe/services/v2/core/vault/us_bank_account_service.rb', line 19 def routing_number @routing_number end |