Class: Stripe::PaymentMethodService::CreateParams::UsBankAccount
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentMethodService::CreateParams::UsBankAccount
- Defined in:
- lib/stripe/services/payment_method_service.rb
Instance Attribute Summary collapse
-
#account_holder_type ⇒ Object
Account holder type: individual or company.
-
#account_number ⇒ Object
Account number of the bank account.
-
#account_type ⇒ Object
Account type: checkings or savings.
-
#financial_connections_account ⇒ Object
The ID of a Financial Connections Account to use as a payment method.
-
#routing_number ⇒ Object
Routing number of the bank account.
Instance Method Summary collapse
-
#initialize(account_holder_type: nil, account_number: nil, account_type: nil, financial_connections_account: nil, routing_number: nil) ⇒ UsBankAccount
constructor
A new instance of UsBankAccount.
Methods inherited from RequestParams
Constructor Details
#initialize(account_holder_type: nil, account_number: nil, account_type: nil, financial_connections_account: nil, routing_number: nil) ⇒ UsBankAccount
Returns a new instance of UsBankAccount.
407 408 409 410 411 412 413 414 415 416 417 418 419 |
# File 'lib/stripe/services/payment_method_service.rb', line 407 def initialize( account_holder_type: nil, account_number: nil, account_type: nil, financial_connections_account: nil, routing_number: nil ) @account_holder_type = account_holder_type @account_number = account_number @account_type = account_type @financial_connections_account = financial_connections_account @routing_number = routing_number end |
Instance Attribute Details
#account_holder_type ⇒ Object
Account holder type: individual or company.
397 398 399 |
# File 'lib/stripe/services/payment_method_service.rb', line 397 def account_holder_type @account_holder_type end |
#account_number ⇒ Object
Account number of the bank account.
399 400 401 |
# File 'lib/stripe/services/payment_method_service.rb', line 399 def account_number @account_number end |
#account_type ⇒ Object
Account type: checkings or savings. Defaults to checking if omitted.
401 402 403 |
# File 'lib/stripe/services/payment_method_service.rb', line 401 def account_type @account_type end |
#financial_connections_account ⇒ Object
The ID of a Financial Connections Account to use as a payment method.
403 404 405 |
# File 'lib/stripe/services/payment_method_service.rb', line 403 def financial_connections_account @financial_connections_account end |
#routing_number ⇒ Object
Routing number of the bank account.
405 406 407 |
# File 'lib/stripe/services/payment_method_service.rb', line 405 def routing_number @routing_number end |