Class: Aws::Connect::Types::EvaluationScore
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::EvaluationScore
- Defined in:
- gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
Overview
Information about scores of a contact evaluation item (section or question).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#automatic_fail ⇒ Boolean
The flag that marks the item as automatic fail.
-
#not_applicable ⇒ Boolean
The flag to mark the item as not applicable for scoring.
-
#percentage ⇒ Float
The score percentage for an item in a contact evaluation.
Instance Attribute Details
#automatic_fail ⇒ Boolean
The flag that marks the item as automatic fail. If the item or a child item gets an automatic fail answer, this flag will be true.
8996 8997 8998 8999 9000 9001 9002 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8996 class EvaluationScore < Struct.new( :percentage, :not_applicable, :automatic_fail) SENSITIVE = [] include Aws::Structure end |
#not_applicable ⇒ Boolean
The flag to mark the item as not applicable for scoring.
8996 8997 8998 8999 9000 9001 9002 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8996 class EvaluationScore < Struct.new( :percentage, :not_applicable, :automatic_fail) SENSITIVE = [] include Aws::Structure end |
#percentage ⇒ Float
The score percentage for an item in a contact evaluation.
8996 8997 8998 8999 9000 9001 9002 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8996 class EvaluationScore < Struct.new( :percentage, :not_applicable, :automatic_fail) SENSITIVE = [] include Aws::Structure end |