Class: Stripe::AccountExternalAccountCreateParams::CardToken
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountExternalAccountCreateParams::CardToken
- Defined in:
- lib/stripe/params/account_external_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
Constructor Details
#initialize(object: nil, currency: nil, token: nil) ⇒ CardToken
Returns a new instance of CardToken.
112 113 114 115 116 |
# File 'lib/stripe/params/account_external_account_create_params.rb', line 112 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
108 109 110 |
# File 'lib/stripe/params/account_external_account_create_params.rb', line 108 def currency @currency end |
#object ⇒ Object
Attribute for param field object
106 107 108 |
# File 'lib/stripe/params/account_external_account_create_params.rb', line 106 def object @object end |
#token ⇒ Object
Attribute for param field token
110 111 112 |
# File 'lib/stripe/params/account_external_account_create_params.rb', line 110 def token @token end |