Class: Stripe::AccountUpdateParams::Individual::SelfReportedMonthlyHousingPayment
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountUpdateParams::Individual::SelfReportedMonthlyHousingPayment
- Defined in:
- lib/stripe/params/account_update_params.rb
Instance Attribute Summary collapse
-
#amount ⇒ Object
The amount in the minor currency unit (for example, cents for USD).
-
#currency ⇒ Object
Three-letter [ISO currency code](www.iso.org/iso-4217-currency-codes.html), in lowercase.
Instance Method Summary collapse
-
#initialize(amount: nil, currency: nil) ⇒ SelfReportedMonthlyHousingPayment
constructor
A new instance of SelfReportedMonthlyHousingPayment.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(amount: nil, currency: nil) ⇒ SelfReportedMonthlyHousingPayment
Returns a new instance of SelfReportedMonthlyHousingPayment.
1891 1892 1893 1894 |
# File 'lib/stripe/params/account_update_params.rb', line 1891 def initialize(amount: nil, currency: nil) @amount = amount @currency = currency end |
Instance Attribute Details
#amount ⇒ Object
The amount in the minor currency unit (for example, cents for USD).
1887 1888 1889 |
# File 'lib/stripe/params/account_update_params.rb', line 1887 def amount @amount end |
#currency ⇒ Object
Three-letter [ISO currency code](www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](stripe.com/docs/currencies).
1889 1890 1891 |
# File 'lib/stripe/params/account_update_params.rb', line 1889 def currency @currency end |