Interface AutoTestSelectAllQuestionAnswersValue

An answer answer of a select all question.

interface AutoTestSelectAllQuestionAnswersValue {
    answer: string;
    hints?: AutoTestSelectAllQuestionAnswersValueHints;
    id: string;
    isCorrect: boolean;
}

Properties

answer: string

The text of this answer.

The possible hints to show for when this answer is selected.

id: string

The id of this list element, needs to be unique within this list.

isCorrect: boolean

Whether this answer is correct or not.