Class: Aws::Connect::Types::EvaluationFormSingleSelectQuestionOption
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::EvaluationFormSingleSelectQuestionOption
- Defined in:
- gems/aws-sdk-connect/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.
8769 8770 8771 8772 8773 8774 8775 8776 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8769 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.
8769 8770 8771 8772 8773 8774 8775 8776 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8769 class EvaluationFormSingleSelectQuestionOption < Struct.new( :ref_id, :text, :score, :automatic_fail) SENSITIVE = [] include Aws::Structure end |
#score ⇒ Integer
The score assigned to the answer option.
8769 8770 8771 8772 8773 8774 8775 8776 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8769 class EvaluationFormSingleSelectQuestionOption < Struct.new( :ref_id, :text, :score, :automatic_fail) SENSITIVE = [] include Aws::Structure end |
#text ⇒ String
The title of the answer option.
8769 8770 8771 8772 8773 8774 8775 8776 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8769 class EvaluationFormSingleSelectQuestionOption < Struct.new( :ref_id, :text, :score, :automatic_fail) SENSITIVE = [] include Aws::Structure end |