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.
4098 4099 4100 4101 4102 |
# File 'lib/stripe/resources/account.rb', line 4098 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
4094 4095 4096 |
# File 'lib/stripe/resources/account.rb', line 4094 def currency @currency end |
#object ⇒ Object
Attribute for param field object
4092 4093 4094 |
# File 'lib/stripe/resources/account.rb', line 4092 def object @object end |
#token ⇒ Object
Attribute for param field token
4096 4097 4098 |
# File 'lib/stripe/resources/account.rb', line 4096 def token @token end |