Interface AutoTestMcqAnswersValue

An answer of a multiple choice question.

interface AutoTestMcqAnswersValue {
    answer: string;
    hint?: string;
    id: string;
}

Properties

Properties

answer: string

The text of this answer.

hint?: string

The hint to show when we select this answer to the question.

id: string

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