EvaluationFormNumericQuestionOptionArgs

data class EvaluationFormNumericQuestionOptionArgs(val automaticFail: Output<Boolean>? = null, val maxValue: Output<Int>, val minValue: Output<Int>, val score: Output<Int>? = null) : ConvertibleToJava<EvaluationFormNumericQuestionOptionArgs>

The option ranges used for scoring in numeric questions.

Constructors

Link copied to clipboard
fun EvaluationFormNumericQuestionOptionArgs(automaticFail: Output<Boolean>? = null, maxValue: Output<Int>, minValue: Output<Int>, score: Output<Int>? = null)

Functions

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

Properties

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

The flag to mark the option as automatic fail.

Link copied to clipboard
val maxValue: Output<Int>

The maximum value of the option range.

Link copied to clipboard
val minValue: Output<Int>

The minimum value of the option range.

Link copied to clipboard
val score: Output<Int>? = null

The score of the option range.