Interface PearsonSelectAllQuestionAnswerHints

The structure containing a possible hint for answering correctly or incorrectly

interface PearsonSelectAllQuestionAnswerHints {
    correct?: string;
    incorrect?: string;
}

Properties

Properties

correct?: string

The hint to show when the answer was put in the correct selected state.

incorrect?: string

The hint to show when the answer was not put in the right selected state.