Class: Stripe::Treasury::FinancialAccount::UpdateParams::Features::FinancialAddresses::Aba

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/resources/treasury/financial_account.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(bank: nil, requested: nil) ⇒ Aba

Returns a new instance of Aba.



337
338
339
340
# File 'lib/stripe/resources/treasury/financial_account.rb', line 337

def initialize(bank: nil, requested: nil)
  @bank = bank
  @requested = requested
end

Instance Attribute Details

#bankObject

Requested bank partner



333
334
335
# File 'lib/stripe/resources/treasury/financial_account.rb', line 333

def bank
  @bank
end

#requestedObject

Whether the FinancialAccount should have the Feature.



335
336
337
# File 'lib/stripe/resources/treasury/financial_account.rb', line 335

def requested
  @requested
end