Class: Stripe::V2::MoneyManagement::FinancialAccountUpdateParams

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/v2/money_management/financial_account_update_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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_nameObject

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

#metadataObject

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