Interface AutoTestMcqStepInput

A multiple choice question in a quiz.

interface AutoTestMcqStepInput {
    answerOrder?: AutoTestQuizAnswerOrder;
    answers: AutoTestMcqAnswersValue[];
    correctAnswer?: string;
    description?: AutoTestDescription;
    id?: string;
    name?: string;
    question: string;
}

Properties

How answers of this question should be ordered.

The answers of a multiple choice question.

correctAnswer?: string

The id of the correct answer.

description?: AutoTestDescription

The description of this step.

id?: string

The id of this step.

name?: string

The name of this step.

question: string

The question.