Class: Stripe::Account::UpdateParams::CardToken
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Account::UpdateParams::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.
1826 1827 1828 1829 1830 |
# File 'lib/stripe/resources/account.rb', line 1826 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
1822 1823 1824 |
# File 'lib/stripe/resources/account.rb', line 1822 def currency @currency end |
#object ⇒ Object
Attribute for param field object
1820 1821 1822 |
# File 'lib/stripe/resources/account.rb', line 1820 def object @object end |
#token ⇒ Object
Attribute for param field token
1824 1825 1826 |
# File 'lib/stripe/resources/account.rb', line 1824 def token @token end |