Class: Aws::Connect::Types::EvaluationFormQuestionTypeProperties

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb

Overview

Note:

EvaluationFormQuestionTypeProperties is a union - when making an API calls you must set exactly one of the members.

Note:

EvaluationFormQuestionTypeProperties is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of EvaluationFormQuestionTypeProperties corresponding to the set member.

Information about properties for a question in an evaluation form. The question type properties must be either for a numeric question or a single select question.

Direct Known Subclasses

Numeric, SingleSelect, Unknown

Defined Under Namespace

Classes: Numeric, SingleSelect, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#numericTypes::EvaluationFormNumericQuestionProperties

The properties of the numeric question.



6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 6809

class EvaluationFormQuestionTypeProperties < Struct.new(
  :numeric,
  :single_select,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Numeric < EvaluationFormQuestionTypeProperties; end
  class SingleSelect < EvaluationFormQuestionTypeProperties; end
  class Unknown < EvaluationFormQuestionTypeProperties; end
end

#single_selectTypes::EvaluationFormSingleSelectQuestionProperties

The properties of the numeric question.



6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 6809

class EvaluationFormQuestionTypeProperties < Struct.new(
  :numeric,
  :single_select,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Numeric < EvaluationFormQuestionTypeProperties; end
  class SingleSelect < EvaluationFormQuestionTypeProperties; end
  class Unknown < EvaluationFormQuestionTypeProperties; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



6809
6810
6811
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 6809

def unknown
  @unknown
end