Class: Stripe::Treasury::FinancialAccountFeaturesService::UpdateParams::FinancialAddresses::Aba

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/treasury/financial_account_features_service.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.



34
35
36
37
# File 'lib/stripe/services/treasury/financial_account_features_service.rb', line 34

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

Instance Attribute Details

#bankObject

Requested bank partner



29
30
31
# File 'lib/stripe/services/treasury/financial_account_features_service.rb', line 29

def bank
  @bank
end

#requestedObject

Whether the FinancialAccount should have the Feature.



32
33
34
# File 'lib/stripe/services/treasury/financial_account_features_service.rb', line 32

def requested
  @requested
end