Class: Stripe::V2::MoneyManagement::FinancialAccountUpdateParams::Storage
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::MoneyManagement::FinancialAccountUpdateParams::Storage
- Defined in:
- lib/stripe/params/v2/money_management/financial_account_update_params.rb
Instance Attribute Summary collapse
-
#holds_currencies ⇒ Object
The currencies that this storage FinancialAccount can hold a balance in.
Instance Method Summary collapse
-
#initialize(holds_currencies: nil) ⇒ Storage
constructor
A new instance of Storage.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(holds_currencies: nil) ⇒ Storage
Returns a new instance of Storage.
14 15 16 |
# File 'lib/stripe/params/v2/money_management/financial_account_update_params.rb', line 14 def initialize(holds_currencies: nil) @holds_currencies = holds_currencies end |
Instance Attribute Details
#holds_currencies ⇒ Object
The currencies that this storage FinancialAccount can hold a balance in. Three-letter ISO currency code, in lowercase. Adding currencies requires the corresponding holds_currencies storer capabilities to be enabled. Removing currencies is not supported as of March 2026.
12 13 14 |
# File 'lib/stripe/params/v2/money_management/financial_account_update_params.rb', line 12 def holds_currencies @holds_currencies end |