Class: Stripe::AccountCreateParams::Individual::SelfReportedMonthlyHousingPayment

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/account_create_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(amount: nil, currency: nil) ⇒ SelfReportedMonthlyHousingPayment

Returns a new instance of SelfReportedMonthlyHousingPayment.



1892
1893
1894
1895
# File 'lib/stripe/params/account_create_params.rb', line 1892

def initialize(amount: nil, currency: nil)
  @amount = amount
  @currency = currency
end

Instance Attribute Details

#amountObject

Attribute for param field amount



1888
1889
1890
# File 'lib/stripe/params/account_create_params.rb', line 1888

def amount
  @amount
end

#currencyObject

Attribute for param field currency



1890
1891
1892
# File 'lib/stripe/params/account_create_params.rb', line 1890

def currency
  @currency
end