Class: Aws::Connect::Types::EvaluationFormSingleSelectQuestionOption
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::EvaluationFormSingleSelectQuestionOption
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-connect/types.rb
Overview
Information about the automation configuration in single select questions.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#automatic_fail ⇒ Boolean
The flag to mark the option as automatic fail.
-
#ref_id ⇒ String
The identifier of the answer option.
-
#score ⇒ Integer
The score assigned to the answer option.
-
#text ⇒ String
The title of the answer 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.
7814 7815 7816 7817 7818 7819 7820 7821 |
# File 'lib/aws-sdk-connect/types.rb', line 7814 class EvaluationFormSingleSelectQuestionOption < Struct.new( :ref_id, :text, :score, :automatic_fail) SENSITIVE = [] include Aws::Structure end |
#ref_id ⇒ String
The identifier of the answer option. An identifier must be unique within the question.
7814 7815 7816 7817 7818 7819 7820 7821 |
# File 'lib/aws-sdk-connect/types.rb', line 7814 class EvaluationFormSingleSelectQuestionOption < Struct.new( :ref_id, :text, :score, :automatic_fail) SENSITIVE = [] include Aws::Structure end |
#score ⇒ Integer
The score assigned to the answer option.
7814 7815 7816 7817 7818 7819 7820 7821 |
# File 'lib/aws-sdk-connect/types.rb', line 7814 class EvaluationFormSingleSelectQuestionOption < Struct.new( :ref_id, :text, :score, :automatic_fail) SENSITIVE = [] include Aws::Structure end |
#text ⇒ String
The title of the answer option.
7814 7815 7816 7817 7818 7819 7820 7821 |
# File 'lib/aws-sdk-connect/types.rb', line 7814 class EvaluationFormSingleSelectQuestionOption < Struct.new( :ref_id, :text, :score, :automatic_fail) SENSITIVE = [] include Aws::Structure end |