EvaluationFormQuestionArgs

data class EvaluationFormQuestionArgs(val instructions: Output<String>? = null, val notApplicableEnabled: Output<Boolean>? = null, val questionType: Output<EvaluationFormQuestionQuestionType>, val questionTypeProperties: Output<EvaluationFormQuestionTypePropertiesArgs>? = null, val refId: Output<String>, val title: Output<String>, val weight: Output<Double>? = null) : ConvertibleToJava<EvaluationFormQuestionArgs>

Information about a question from an evaluation form.

Constructors

Link copied to clipboard
constructor(instructions: Output<String>? = null, notApplicableEnabled: Output<Boolean>? = null, questionType: Output<EvaluationFormQuestionQuestionType>, questionTypeProperties: Output<EvaluationFormQuestionTypePropertiesArgs>? = null, refId: Output<String>, title: Output<String>, weight: Output<Double>? = null)

Properties

Link copied to clipboard
val instructions: Output<String>? = null

The instructions of the section. Length Constraints: Minimum length of 0. Maximum length of 1024.

Link copied to clipboard
val notApplicableEnabled: Output<Boolean>? = null

The flag to enable not applicable answers to the question.

Link copied to clipboard

The type of the question. Allowed values: `NUMERIC` | `SINGLESELECT` | `TEXT`

Link copied to clipboard

The properties of the type of question. Text questions do not have to define question type properties.

Link copied to clipboard
val refId: Output<String>

The identifier of the question. An identifier must be unique within the evaluation form. Length Constraints: Minimum length of 1. Maximum length of 40.

Link copied to clipboard
val title: Output<String>

The title of the question. Length Constraints: Minimum length of 1. Maximum length of 350.

Link copied to clipboard
val weight: Output<Double>? = null

The scoring weight of the section. Minimum: 0 Maximum: 100

Functions

Link copied to clipboard
open override fun toJava(): EvaluationFormQuestionArgs