Class: Stripe::V2::MoneyManagement::FinancialAccountUpdateParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::MoneyManagement::FinancialAccountUpdateParams
- Defined in:
- lib/stripe/params/v2/money_management/financial_account_update_params.rb
Defined Under Namespace
Classes: Storage
Instance Attribute Summary collapse
-
#display_name ⇒ Object
A descriptive name for the FinancialAccount, up to 50 characters long.
-
#metadata ⇒ Object
Metadata associated with the FinancialAccount.
-
#storage ⇒ Object
Parameters for updating storage-specific fields on the FinancialAccount.
Instance Method Summary collapse
-
#initialize(display_name: nil, metadata: nil, storage: nil) ⇒ FinancialAccountUpdateParams
constructor
A new instance of FinancialAccountUpdateParams.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(display_name: nil, metadata: nil, storage: nil) ⇒ FinancialAccountUpdateParams
Returns a new instance of FinancialAccountUpdateParams.
25 26 27 28 29 |
# File 'lib/stripe/params/v2/money_management/financial_account_update_params.rb', line 25 def initialize(display_name: nil, metadata: nil, storage: nil) @display_name = display_name @metadata = @storage = storage end |
Instance Attribute Details
#display_name ⇒ Object
A descriptive name for the FinancialAccount, up to 50 characters long. This name will be used in the Stripe Dashboard and embedded components.
19 20 21 |
# File 'lib/stripe/params/v2/money_management/financial_account_update_params.rb', line 19 def display_name @display_name end |
#metadata ⇒ Object
Metadata associated with the FinancialAccount.
21 22 23 |
# File 'lib/stripe/params/v2/money_management/financial_account_update_params.rb', line 21 def @metadata end |
#storage ⇒ Object
Parameters for updating storage-specific fields on the FinancialAccount.
23 24 25 |
# File 'lib/stripe/params/v2/money_management/financial_account_update_params.rb', line 23 def storage @storage end |