caccl-api
Version:
A class that defines a set of smart Canvas endpoints that actually behave how you'd expect them to.
21 lines (19 loc) • 472 B
text/typescript
interface CanvasRubricCriterion {
// the ID of the criterion
id: string,
description?: string | null,
long_description?: string | null,
points: number,
criterion_use_range?: boolean | null,
// the possible ratings for this Criterion
ratings?: (
{
id: string,
criterion_id: string,
description?: string | null,
long_description?: string | null,
points: number,
}
)[] | null,
};
export default CanvasRubricCriterion;