Interface InstantiatePearsonTemplateRequest

The data to instantiate a Pearson template into an assignment.

interface InstantiatePearsonTemplateRequest {
    dstAssignmentId: number;
    questionsMapping: Record<string, number>;
    templateId: string;
    tenantId: string;
}

Hierarchy (View Summary)

Properties

dstAssignmentId: number

The id of the assignment in which the ATv2 should be created. This assignment does not already have to exist.

questionsMapping: Record<string, number>

The mapping of questions to rubric row ids, all questions not present in this mapping will not be created.

templateId: string

The id of the template.

tenantId: string

The tenant id of the template.