Interface PearsonContextTemplateQuestion

A full representation, including data, of a Pearson question in a context template.

interface PearsonContextTemplateQuestion {
    data: PearsonQuestionData;
    enabled: boolean;
    name: string;
    questionId: string;
}

Properties

The data of the question.

enabled: boolean

Is this question enabled.

name: string

The name of this question.

questionId: string

The id of the question, unique in a context template.