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
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(object: nil, currency: nil, token: nil) ⇒ CardToken
Returns a new instance of CardToken.
1239 1240 1241 1242 1243 |
# File 'lib/stripe/params/account_create_params.rb', line 1239 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
1235 1236 1237 |
# File 'lib/stripe/params/account_create_params.rb', line 1235 def currency @currency end |
#object ⇒ Object
Attribute for param field object
1233 1234 1235 |
# File 'lib/stripe/params/account_create_params.rb', line 1233 def object @object end |
#token ⇒ Object
Attribute for param field token
1237 1238 1239 |
# File 'lib/stripe/params/account_create_params.rb', line 1237 def token @token end |