Class: Stripe::TokenCreateParams::Person::SelfReportedIncome
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::TokenCreateParams::Person::SelfReportedIncome
- 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) ⇒ SelfReportedIncome
constructor
A new instance of SelfReportedIncome.
Methods inherited from RequestParams
Constructor Details
#initialize(amount: nil, currency: nil) ⇒ SelfReportedIncome
Returns a new instance of SelfReportedIncome.
1017 1018 1019 1020 |
# File 'lib/stripe/params/token_create_params.rb', line 1017 def initialize(amount: nil, currency: nil) @amount = amount @currency = currency end |
Instance Attribute Details
#amount ⇒ Object
Attribute for param field amount
1013 1014 1015 |
# File 'lib/stripe/params/token_create_params.rb', line 1013 def amount @amount end |
#currency ⇒ Object
Attribute for param field currency
1015 1016 1017 |
# File 'lib/stripe/params/token_create_params.rb', line 1015 def currency @currency end |