Class: Stripe::AccountCreateParams::CardToken
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountCreateParams::CardToken
- Defined in:
- lib/stripe/params/account_create_params.rb
Instance Attribute Summary collapse
-
#currency ⇒ Object
Attribute for param field currency.
-
#object ⇒ Object
Attribute for param field object.
-
#token ⇒ Object
Attribute for param field token.
Instance Method Summary collapse
-
#initialize(object: nil, currency: nil, token: nil) ⇒ CardToken
constructor
A new instance of CardToken.
Methods inherited from RequestParams
Constructor Details
#initialize(object: nil, currency: nil, token: nil) ⇒ CardToken
1027 1028 1029 1030 1031 |
# File 'lib/stripe/params/account_create_params.rb', line 1027 def initialize(object: nil, currency: nil, token: nil) @object = object @currency = currency @token = token end |
Instance Attribute Details
#currency ⇒ Object
Attribute for param field currency
1023 1024 1025 |
# File 'lib/stripe/params/account_create_params.rb', line 1023 def currency @currency end |
#object ⇒ Object
Attribute for param field object
1021 1022 1023 |
# File 'lib/stripe/params/account_create_params.rb', line 1021 def object @object end |
#token ⇒ Object
Attribute for param field token
1025 1026 1027 |
# File 'lib/stripe/params/account_create_params.rb', line 1025 def token @token end |