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
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.
Instance Method Summary collapse
-
#initialize(display_name: nil, metadata: 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) ⇒ FinancialAccountUpdateParams
Returns a new instance of FinancialAccountUpdateParams.
13 14 15 16 |
# File 'lib/stripe/params/v2/money_management/financial_account_update_params.rb', line 13 def initialize(display_name: nil, metadata: nil) @display_name = display_name @metadata = 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.
9 10 11 |
# File 'lib/stripe/params/v2/money_management/financial_account_update_params.rb', line 9 def display_name @display_name end |
#metadata ⇒ Object
Metadata associated with the FinancialAccount.
11 12 13 |
# File 'lib/stripe/params/v2/money_management/financial_account_update_params.rb', line 11 def @metadata end |