Interface PearsonSelectAllQuestionData

A select all question.

interface PearsonSelectAllQuestionData {
    answerOrder?: PearsonSelectAllQuestionAnswerOrder;
    answers: PearsonSelectAllQuestionAnswer[];
    question: string;
}

Properties

The order in which answers are presented to students.

The possible answers for a select all question.

question: string

The question that will be asked to the students.