Class: Stripe::AccountPersonUpdateParams::SelfReportedMonthlyHousingPayment
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountPersonUpdateParams::SelfReportedMonthlyHousingPayment
- Defined in:
- lib/stripe/params/account_person_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
Constructor Details
#initialize(amount: nil, currency: nil) ⇒ SelfReportedMonthlyHousingPayment
Returns a new instance of SelfReportedMonthlyHousingPayment.
260 261 262 263 |
# File 'lib/stripe/params/account_person_update_params.rb', line 260 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).
256 257 258 |
# File 'lib/stripe/params/account_person_update_params.rb', line 256 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).
258 259 260 |
# File 'lib/stripe/params/account_person_update_params.rb', line 258 def currency @currency end |