Class: Aws::Connect::Types::EvaluationFormItem

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

Overview

Note:

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

Note:

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

Information about an item from an evaluation form. The item must be either a section or a question.

Direct Known Subclasses

Question, Section, Unknown

Defined Under Namespace

Classes: Question, Section, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#questionTypes::EvaluationFormQuestion

The information of the question.



6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 6369

class EvaluationFormItem < Struct.new(
  :section,
  :question,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Section < EvaluationFormItem; end
  class Question < EvaluationFormItem; end
  class Unknown < EvaluationFormItem; end
end

#sectionTypes::EvaluationFormSection

The information of the section.



6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 6369

class EvaluationFormItem < Struct.new(
  :section,
  :question,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Section < EvaluationFormItem; end
  class Question < EvaluationFormItem; end
  class Unknown < EvaluationFormItem; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



6369
6370
6371
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 6369

def unknown
  @unknown
end