Class: Aws::Connect::Types::EvaluationScore

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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

Instance Attribute Details

#automatic_failBoolean

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.

Returns:

  • (Boolean)


6896
6897
6898
6899
6900
6901
6902
# File 'lib/aws-sdk-connect/types.rb', line 6896

class EvaluationScore < Struct.new(
  :percentage,
  :not_applicable,
  :automatic_fail)
  SENSITIVE = []
  include Aws::Structure
end

#not_applicableBoolean

The flag to mark the item as not applicable for scoring.

Returns:

  • (Boolean)


6896
6897
6898
6899
6900
6901
6902
# File 'lib/aws-sdk-connect/types.rb', line 6896

class EvaluationScore < Struct.new(
  :percentage,
  :not_applicable,
  :automatic_fail)
  SENSITIVE = []
  include Aws::Structure
end

#percentageFloat

The score percentage for an item in a contact evaluation.

Returns:

  • (Float)


6896
6897
6898
6899
6900
6901
6902
# File 'lib/aws-sdk-connect/types.rb', line 6896

class EvaluationScore < Struct.new(
  :percentage,
  :not_applicable,
  :automatic_fail)
  SENSITIVE = []
  include Aws::Structure
end