Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RubricGrade

import type { RubricGrade } from "https://googleapis.deno.dev/v1/classroom:v1.ts";

A rubric grade set for the student submission. There is at most one entry per rubric criterion.

interface RubricGrade {
criterionId?: string;
levelId?: string;
points?: number;
}

§Properties

§
criterionId?: string
[src]

Optional. Criterion ID.

§
levelId?: string
[src]

Optional. Optional level ID of the selected level. If empty, no level was selected.

§
points?: number
[src]

Optional. Optional points assigned for this criterion, typically based on the level. Levels might or might not have points. If unset, no points were set for this criterion.