Class: Stripe::Radar::AccountEvaluationCreateParams::RegistrationInitiated::CustomerData
- Inherits:
-
Stripe::RequestParams
- Object
- Stripe::RequestParams
- Stripe::Radar::AccountEvaluationCreateParams::RegistrationInitiated::CustomerData
- Defined in:
- lib/stripe/params/radar/account_evaluation_create_params.rb
Instance Attribute Summary collapse
-
#email ⇒ Object
Customer email.
-
#name ⇒ Object
Customer name.
-
#phone ⇒ Object
Customer phone.
Instance Method Summary collapse
-
#initialize(email: nil, name: nil, phone: nil) ⇒ CustomerData
constructor
A new instance of CustomerData.
Methods inherited from Stripe::RequestParams
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
#email ⇒ Object
Customer email
39 40 41 |
# File 'lib/stripe/params/radar/account_evaluation_create_params.rb', line 39 def email @email end |
#name ⇒ Object
Customer name
41 42 43 |
# File 'lib/stripe/params/radar/account_evaluation_create_params.rb', line 41 def name @name end |
#phone ⇒ Object
Customer phone
43 44 45 |
# File 'lib/stripe/params/radar/account_evaluation_create_params.rb', line 43 def phone @phone end |