Class: Stripe::AccountCreateParams::CardToken

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

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



1027
1028
1029
1030
1031
# File 'lib/stripe/params/account_create_params.rb', line 1027

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

Instance Attribute Details

#currencyObject

Attribute for param field currency



1023
1024
1025
# File 'lib/stripe/params/account_create_params.rb', line 1023

def currency
  @currency
end

#objectObject

Attribute for param field object



1021
1022
1023
# File 'lib/stripe/params/account_create_params.rb', line 1021

def object
  @object
end

#tokenObject

Attribute for param field token



1025
1026
1027
# File 'lib/stripe/params/account_create_params.rb', line 1025

def token
  @token
end