EvaluationFormNumericQuestionOptionArgs

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

Information about the option range used for scoring in numeric questions.

Constructors

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

Properties

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

The flag to mark the option as automatic fail. If an automatic fail answer is provided, the overall evaluation gets a score of 0.

Link copied to clipboard
val maxValue: Output<Int>

The maximum answer value of the range option.

Link copied to clipboard
val minValue: Output<Int>

The minimum answer value of the range option.

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

The score assigned to answer values within the range option. Minimum: 0 Maximum: 10

Functions

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