Class: Stripe::Treasury::FinancialAccountService::CreateParams::Features::FinancialAddresses::Aba
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Treasury::FinancialAccountService::CreateParams::Features::FinancialAddresses::Aba
- Defined in:
- lib/stripe/services/treasury/financial_account_service.rb
Instance Attribute Summary collapse
-
#bank ⇒ Object
Requested bank partner.
-
#requested ⇒ Object
Whether the FinancialAccount should have the Feature.
Instance Method Summary collapse
-
#initialize(bank: nil, requested: nil) ⇒ Aba
constructor
A new instance of Aba.
Methods inherited from RequestParams
Constructor Details
#initialize(bank: nil, requested: nil) ⇒ Aba
Returns a new instance of Aba.
93 94 95 96 |
# File 'lib/stripe/services/treasury/financial_account_service.rb', line 93 def initialize(bank: nil, requested: nil) @bank = bank @requested = requested end |
Instance Attribute Details
#bank ⇒ Object
Requested bank partner
88 89 90 |
# File 'lib/stripe/services/treasury/financial_account_service.rb', line 88 def bank @bank end |
#requested ⇒ Object
Whether the FinancialAccount should have the Feature.
91 92 93 |
# File 'lib/stripe/services/treasury/financial_account_service.rb', line 91 def requested @requested end |