EvaluationFormSectionArgs

data class EvaluationFormSectionArgs(val instructions: Output<String>? = null, val items: Output<List<EvaluationFormItemArgs>>? = null, val refId: Output<String>, val title: Output<String>, val weight: Output<Double>? = null) : ConvertibleToJava<EvaluationFormSectionArgs>

Information about a section from an evaluation form. A section can contain sections and/or questions. Evaluation forms can only contain sections and subsections (two level nesting).

Constructors

Link copied to clipboard
constructor(instructions: Output<String>? = null, items: Output<List<EvaluationFormItemArgs>>? = 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.

Link copied to clipboard
val items: Output<List<EvaluationFormItemArgs>>? = null

The items of the section. Minimum: 1

Link copied to clipboard
val refId: Output<String>

The identifier of the section. 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 section. Length Constraints: Minimum length of 1. Maximum length of 128.

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(): EvaluationFormSectionArgs