Class: Stripe::Radar::CustomerEvaluationCreateParams::EvaluationContext
- Inherits:
-
Stripe::RequestParams
- Object
- Stripe::RequestParams
- Stripe::Radar::CustomerEvaluationCreateParams::EvaluationContext
- Defined in:
- lib/stripe/params/radar/customer_evaluation_create_params.rb
Defined Under Namespace
Classes: ClientDetails, CustomerDetails
Instance Attribute Summary collapse
-
#client_details ⇒ Object
Client details context.
-
#customer_details ⇒ Object
Customer details context.
-
#type ⇒ Object
The type of context entry.
Instance Method Summary collapse
-
#initialize(client_details: nil, customer_details: nil, type: nil) ⇒ EvaluationContext
constructor
A new instance of EvaluationContext.
Methods inherited from Stripe::RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(client_details: nil, customer_details: nil, type: nil) ⇒ EvaluationContext
Returns a new instance of EvaluationContext.
49 50 51 52 53 |
# File 'lib/stripe/params/radar/customer_evaluation_create_params.rb', line 49 def initialize(client_details: nil, customer_details: nil, type: nil) @client_details = client_details @customer_details = customer_details @type = type end |
Instance Attribute Details
#client_details ⇒ Object
Client details context.
43 44 45 |
# File 'lib/stripe/params/radar/customer_evaluation_create_params.rb', line 43 def client_details @client_details end |
#customer_details ⇒ Object
Customer details context.
45 46 47 |
# File 'lib/stripe/params/radar/customer_evaluation_create_params.rb', line 45 def customer_details @customer_details end |
#type ⇒ Object
The type of context entry.
47 48 49 |
# File 'lib/stripe/params/radar/customer_evaluation_create_params.rb', line 47 def type @type end |