Class: Stripe::AccountCreateParams::Individual::SelfReportedIncome
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountCreateParams::Individual::SelfReportedIncome
- 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) ⇒ 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.
1880 1881 1882 1883 |
# File 'lib/stripe/params/account_create_params.rb', line 1880 def initialize(amount: nil, currency: nil) @amount = amount @currency = currency end |
Instance Attribute Details
#amount ⇒ Object
Attribute for param field amount
1876 1877 1878 |
# File 'lib/stripe/params/account_create_params.rb', line 1876 def amount @amount end |
#currency ⇒ Object
Attribute for param field currency
1878 1879 1880 |
# File 'lib/stripe/params/account_create_params.rb', line 1878 def currency @currency end |