Class: Stripe::Radar::AccountEvaluationCreateParams::RegistrationInitiated::CustomerData

Inherits:
Stripe::RequestParams
  • Object
show all
Defined in:
lib/stripe/params/radar/account_evaluation_create_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Stripe::RequestParams

#to_h

Constructor Details

#initialize(email: nil, name: nil, phone: nil) ⇒ CustomerData

Returns a new instance of CustomerData.



45
46
47
48
49
# File 'lib/stripe/params/radar/account_evaluation_create_params.rb', line 45

def initialize(email: nil, name: nil, phone: nil)
  @email = email
  @name = name
  @phone = phone
end

Instance Attribute Details

#emailObject

Customer email



39
40
41
# File 'lib/stripe/params/radar/account_evaluation_create_params.rb', line 39

def email
  @email
end

#nameObject

Customer name



41
42
43
# File 'lib/stripe/params/radar/account_evaluation_create_params.rb', line 41

def name
  @name
end

#phoneObject

Customer phone



43
44
45
# File 'lib/stripe/params/radar/account_evaluation_create_params.rb', line 43

def phone
  @phone
end