Class: Stripe::TestHelpers::Treasury::ReceivedDebitCreateParams::InitiatingPaymentMethodDetails::UsBankAccount
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::TestHelpers::Treasury::ReceivedDebitCreateParams::InitiatingPaymentMethodDetails::UsBankAccount
- Defined in:
- lib/stripe/params/test_helpers/treasury/received_debit_create_params.rb
Instance Attribute Summary collapse
-
#account_holder_name ⇒ Object
The bank account holder’s name.
-
#account_number ⇒ Object
The bank account number.
-
#routing_number ⇒ Object
The bank account’s routing number.
Instance Method Summary collapse
-
#initialize(account_holder_name: nil, account_number: nil, routing_number: nil) ⇒ UsBankAccount
constructor
A new instance of UsBankAccount.
Methods inherited from RequestParams
Constructor Details
#initialize(account_holder_name: nil, account_number: nil, routing_number: nil) ⇒ UsBankAccount
Returns a new instance of UsBankAccount.
17 18 19 20 21 |
# File 'lib/stripe/params/test_helpers/treasury/received_debit_create_params.rb', line 17 def initialize(account_holder_name: nil, account_number: nil, routing_number: nil) @account_holder_name = account_holder_name @account_number = account_number @routing_number = routing_number end |
Instance Attribute Details
#account_holder_name ⇒ Object
The bank account holder’s name.
11 12 13 |
# File 'lib/stripe/params/test_helpers/treasury/received_debit_create_params.rb', line 11 def account_holder_name @account_holder_name end |
#account_number ⇒ Object
The bank account number.
13 14 15 |
# File 'lib/stripe/params/test_helpers/treasury/received_debit_create_params.rb', line 13 def account_number @account_number end |
#routing_number ⇒ Object
The bank account’s routing number.
15 16 17 |
# File 'lib/stripe/params/test_helpers/treasury/received_debit_create_params.rb', line 15 def routing_number @routing_number end |