Class: Stripe::V2::MoneyManagement::FinancialAddressCreateParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::MoneyManagement::FinancialAddressCreateParams
- Defined in:
- lib/stripe/params/v2/money_management/financial_address_create_params.rb
Instance Attribute Summary collapse
-
#financial_account ⇒ Object
The ID of the FinancialAccount the new FinancialAddress should be associated with.
-
#type ⇒ Object
The type of FinancialAddress details to provision.
Instance Method Summary collapse
-
#initialize(financial_account: nil, type: nil) ⇒ FinancialAddressCreateParams
constructor
A new instance of FinancialAddressCreateParams.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(financial_account: nil, type: nil) ⇒ FinancialAddressCreateParams
Returns a new instance of FinancialAddressCreateParams.
13 14 15 16 |
# File 'lib/stripe/params/v2/money_management/financial_address_create_params.rb', line 13 def initialize(financial_account: nil, type: nil) @financial_account = financial_account @type = type end |
Instance Attribute Details
#financial_account ⇒ Object
The ID of the FinancialAccount the new FinancialAddress should be associated with.
9 10 11 |
# File 'lib/stripe/params/v2/money_management/financial_address_create_params.rb', line 9 def financial_account @financial_account end |
#type ⇒ Object
The type of FinancialAddress details to provision.
11 12 13 |
# File 'lib/stripe/params/v2/money_management/financial_address_create_params.rb', line 11 def type @type end |