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.
3888 3889 3890 3891 3892 |
# File 'lib/stripe/resources/account.rb', line 3888 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
3884 3885 3886 |
# File 'lib/stripe/resources/account.rb', line 3884 def currency @currency end |
#object ⇒ Object
Attribute for param field object
3882 3883 3884 |
# File 'lib/stripe/resources/account.rb', line 3882 def object @object end |
#token ⇒ Object
Attribute for param field token
3886 3887 3888 |
# File 'lib/stripe/resources/account.rb', line 3886 def token @token end |