Interface PearsonMultipleChoiceQuestionAnswer

A possible answer when creating a multiple choice question.

interface PearsonMultipleChoiceQuestionAnswer {
    answer: string;
    hint?: string;
    isCorrect?: boolean;
}

Properties

answer: string

The contents of the answer, as markdown.

hint?: string

The hint to show if this answer was selected.

isCorrect?: boolean

Is this the correct answer? Should be set for exactly one answer.