EvaluationFormSection

data class EvaluationFormSection(val instructions: String? = null, val items: List<EvaluationFormItem>? = null, val refId: String, val title: String, val weight: Double? = null)

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: String? = null, items: List<EvaluationFormItem>? = null, refId: String, title: String, weight: Double? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val instructions: String? = null

The instructions of the section.

Link copied to clipboard

The items of the section. Minimum: 1

Link copied to clipboard

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

The title of the section. Length Constraints: Minimum length of 1. Maximum length of 128.

Link copied to clipboard
val weight: Double? = null

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