Class: Stripe::Treasury::FinancialAccountService::UpdateParams::Features::FinancialAddresses::Aba
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Treasury::FinancialAccountService::UpdateParams::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.
300 301 302 303 |
# File 'lib/stripe/services/treasury/financial_account_service.rb', line 300 def initialize(bank: nil, requested: nil) @bank = bank @requested = requested end |
Instance Attribute Details
#bank ⇒ Object
Requested bank partner
296 297 298 |
# File 'lib/stripe/services/treasury/financial_account_service.rb', line 296 def bank @bank end |
#requested ⇒ Object
Whether the FinancialAccount should have the Feature.
298 299 300 |
# File 'lib/stripe/services/treasury/financial_account_service.rb', line 298 def requested @requested end |