Class: Aws::Connect::Types::EvaluationAnswerData
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::EvaluationAnswerData
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-connect/types.rb
Overview
EvaluationAnswerData is a union - when making an API calls you must set exactly one of the members.
EvaluationAnswerData is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of EvaluationAnswerData corresponding to the set member.
Information about answer data for a contact evaluation. Answer data must be either string, numeric, or not applicable.
Direct Known Subclasses
Defined Under Namespace
Classes: NotApplicable, NumericValue, StringValue, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#not_applicable ⇒ Boolean
The flag to mark the question as not applicable.
-
#numeric_value ⇒ Float
The numeric value for an answer in a contact evaluation.
-
#string_value ⇒ String
The string value for an answer in a contact evaluation.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#not_applicable ⇒ Boolean
The flag to mark the question as not applicable.
7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 |
# File 'lib/aws-sdk-connect/types.rb', line 7317 class EvaluationAnswerData < Struct.new( :string_value, :numeric_value, :not_applicable, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class StringValue < EvaluationAnswerData; end class NumericValue < EvaluationAnswerData; end class NotApplicable < EvaluationAnswerData; end class Unknown < EvaluationAnswerData; end end |
#numeric_value ⇒ Float
The numeric value for an answer in a contact evaluation.
7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 |
# File 'lib/aws-sdk-connect/types.rb', line 7317 class EvaluationAnswerData < Struct.new( :string_value, :numeric_value, :not_applicable, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class StringValue < EvaluationAnswerData; end class NumericValue < EvaluationAnswerData; end class NotApplicable < EvaluationAnswerData; end class Unknown < EvaluationAnswerData; end end |
#string_value ⇒ String
The string value for an answer in a contact evaluation.
7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 |
# File 'lib/aws-sdk-connect/types.rb', line 7317 class EvaluationAnswerData < Struct.new( :string_value, :numeric_value, :not_applicable, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class StringValue < EvaluationAnswerData; end class NumericValue < EvaluationAnswerData; end class NotApplicable < EvaluationAnswerData; end class Unknown < EvaluationAnswerData; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
7317 7318 7319 |
# File 'lib/aws-sdk-connect/types.rb', line 7317 def unknown @unknown end |