Class: Stripe::AccountUpdateParams::CardToken

Inherits:
RequestParams show all
Defined in:
lib/stripe/params/account_update_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

#initialize(object: nil, currency: nil, token: nil) ⇒ CardToken



1040
1041
1042
1043
1044
# File 'lib/stripe/params/account_update_params.rb', line 1040

def initialize(object: nil, currency: nil, token: nil)
  @object = object
  @currency = currency
  @token = token
end

Instance Attribute Details

#currencyObject

Attribute for param field currency



1036
1037
1038
# File 'lib/stripe/params/account_update_params.rb', line 1036

def currency
  @currency
end

#objectObject

Attribute for param field object



1034
1035
1036
# File 'lib/stripe/params/account_update_params.rb', line 1034

def object
  @object
end

#tokenObject

Attribute for param field token



1038
1039
1040
# File 'lib/stripe/params/account_update_params.rb', line 1038

def token
  @token
end