Interface AutoTestRedactedMcqStepOutput

A multiple choice question in a quiz (redacted).

interface AutoTestRedactedMcqStepOutput {
    answerOrder?: AutoTestQuizAnswerOrder;
    answers: AutoTestRedactedMcqAnswersValue[];
    correctAnswer?: AutoTestRedactedString;
    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?: AutoTestRedactedString

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.