qus-canvas
Version:
client api for canvas
17 lines • 458 B
TypeScript
import { DataInterface } from "./data.interface";
export interface RubricInterface {
id: string;
contextId: number;
contextType: string;
data: DataInterface[];
pointsPossible: number;
title: string;
reusable: boolean;
public: boolean;
readOnly: boolean;
freeFormCriterionComments: boolean;
hideScoreTotal: boolean;
ratingOrder: string;
rubricNumber: number;
}
//# sourceMappingURL=rubric.interface.d.ts.map