Interface PearsonSelectAllQuestionAnswer

A possible answer when creating a multiple choice question.

interface PearsonSelectAllQuestionAnswer {
    answer: string;
    hints?: PearsonSelectAllQuestionAnswerHints;
    isCorrect?: boolean;
}

Properties

answer: string

The contents of the answer, as markdown.

Possible hints for when the answer has been marked correct or incorrect

isCorrect?: boolean

Is this a correct answer? Can be set for any number of the answers, including 0 correct answers.