Method: Aws::Connect::Types#single_select
- Defined in:
- lib/aws-sdk-connect/types.rb
#single_select ⇒ Types::EvaluationFormSingleSelectQuestionProperties
The properties of the numeric question.
12307 12308 12309 12310 12311 12312 12313 12314 12315 12316 12317 12318 12319 12320 12321 12322 |
# File 'lib/aws-sdk-connect/types.rb', line 12307 class EvaluationFormQuestionTypeProperties < Struct.new( :numeric, :single_select, :text, :multi_select, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Numeric < EvaluationFormQuestionTypeProperties; end class SingleSelect < EvaluationFormQuestionTypeProperties; end class Text < EvaluationFormQuestionTypeProperties; end class MultiSelect < EvaluationFormQuestionTypeProperties; end class Unknown < EvaluationFormQuestionTypeProperties; end end |