Class: Stripe::TokenCreateParams::Person::SelfReportedMonthlyHousingPayment
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::TokenCreateParams::Person::SelfReportedMonthlyHousingPayment
- Defined in:
- lib/stripe/params/token_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.
1029 1030 1031 1032 |
# File 'lib/stripe/params/token_create_params.rb', line 1029 def initialize(amount: nil, currency: nil) @amount = amount @currency = currency end |
Instance Attribute Details
#amount ⇒ Object
Attribute for param field amount
1025 1026 1027 |
# File 'lib/stripe/params/token_create_params.rb', line 1025 def amount @amount end |
#currency ⇒ Object
Attribute for param field currency
1027 1028 1029 |
# File 'lib/stripe/params/token_create_params.rb', line 1027 def currency @currency end |