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.
3650 3651 3652 3653 3654 |
# File 'lib/stripe/resources/account.rb', line 3650 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
3646 3647 3648 |
# File 'lib/stripe/resources/account.rb', line 3646 def currency @currency end |
#object ⇒ Object
Attribute for param field object
3644 3645 3646 |
# File 'lib/stripe/resources/account.rb', line 3644 def object @object end |
#token ⇒ Object
Attribute for param field token
3648 3649 3650 |
# File 'lib/stripe/resources/account.rb', line 3648 def token @token end |