Interface PearsonCodingQuestionData

The data of a coding question.

interface PearsonCodingQuestionData {
    autoTestSteps: DocumentType;
    correctAnswer: string;
    description: string;
    filename: string;
    template: string;
}

Properties

autoTestSteps: DocumentType

The AutoTest steps. This property is not stable and may change in the future.

correctAnswer: string

A correct implementation for the question.

description: string

The description of the question.

filename: string

The filename in which the question should be answered.

template: string

The template for the question.