Class: Aws::Connect::Types::EvaluationFormNumericQuestionOption
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::EvaluationFormNumericQuestionOption
- Defined in:
- gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
Overview
Information about the option range used for scoring in numeric questions.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#automatic_fail ⇒ Boolean
The flag to mark the option as automatic fail.
-
#max_value ⇒ Integer
The maximum answer value of the range option.
-
#min_value ⇒ Integer
The minimum answer value of the range option.
-
#score ⇒ Integer
The score assigned to answer values within the range option.
Instance Attribute Details
#automatic_fail ⇒ Boolean
The flag to mark the option as automatic fail. If an automatic fail answer is provided, the overall evaluation gets a score of 0.
8527 8528 8529 8530 8531 8532 8533 8534 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8527 class EvaluationFormNumericQuestionOption < Struct.new( :min_value, :max_value, :score, :automatic_fail) SENSITIVE = [] include Aws::Structure end |
#max_value ⇒ Integer
The maximum answer value of the range option.
8527 8528 8529 8530 8531 8532 8533 8534 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8527 class EvaluationFormNumericQuestionOption < Struct.new( :min_value, :max_value, :score, :automatic_fail) SENSITIVE = [] include Aws::Structure end |
#min_value ⇒ Integer
The minimum answer value of the range option.
8527 8528 8529 8530 8531 8532 8533 8534 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8527 class EvaluationFormNumericQuestionOption < Struct.new( :min_value, :max_value, :score, :automatic_fail) SENSITIVE = [] include Aws::Structure end |
#score ⇒ Integer
The score assigned to answer values within the range option.
8527 8528 8529 8530 8531 8532 8533 8534 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8527 class EvaluationFormNumericQuestionOption < Struct.new( :min_value, :max_value, :score, :automatic_fail) SENSITIVE = [] include Aws::Structure end |