Class: Stripe::AccountCreateParams::Individual::SelfReportedMonthlyHousingPayment
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountCreateParams::Individual::SelfReportedMonthlyHousingPayment
- Defined in:
- lib/stripe/params/account_create_params.rb
Instance Attribute Summary collapse
-
#amount ⇒ Object
Attribute for param field amount.
-
#currency ⇒ Object
Attribute for param field currency.
Instance Method Summary collapse
-
#initialize(amount: nil, currency: nil) ⇒ SelfReportedMonthlyHousingPayment
constructor
A new instance of SelfReportedMonthlyHousingPayment.
Methods inherited from RequestParams
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
#amount ⇒ Object
Attribute for param field amount
1888 1889 1890 |
# File 'lib/stripe/params/account_create_params.rb', line 1888 def amount @amount end |
#currency ⇒ Object
Attribute for param field currency
1890 1891 1892 |
# File 'lib/stripe/params/account_create_params.rb', line 1890 def currency @currency end |