Class: Stripe::V2::MoneyManagement::FinancialAddressCreateParams

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/v2/money_management/financial_address_create_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(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 = 
  @type = type
end

Instance Attribute Details

#financial_accountObject

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
end

#typeObject

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