Class: Stripe::Account::CreateParams::CardToken
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Account::CreateParams::CardToken
- Defined in:
- lib/stripe/resources/account.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
Returns a new instance of CardToken.
4183 4184 4185 4186 4187 |
# File 'lib/stripe/resources/account.rb', line 4183 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
4179 4180 4181 |
# File 'lib/stripe/resources/account.rb', line 4179 def currency @currency end |
#object ⇒ Object
Attribute for param field object
4177 4178 4179 |
# File 'lib/stripe/resources/account.rb', line 4177 def object @object end |
#token ⇒ Object
Attribute for param field token
4181 4182 4183 |
# File 'lib/stripe/resources/account.rb', line 4181 def token @token end |