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

GradeHistory

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

The history of each grade on this submission.

interface GradeHistory {
actorUserId?: string;
gradeChangeType?:
| "UNKNOWN_GRADE_CHANGE_TYPE"
| "DRAFT_GRADE_POINTS_EARNED_CHANGE"
| "ASSIGNED_GRADE_POINTS_EARNED_CHANGE"
| "MAX_POINTS_CHANGE";
gradeTimestamp?: Date;
maxPoints?: number;
pointsEarned?: number;
}

§Properties

§
actorUserId?: string
[src]

The teacher who made the grade change.

§
gradeChangeType?: "UNKNOWN_GRADE_CHANGE_TYPE" | "DRAFT_GRADE_POINTS_EARNED_CHANGE" | "ASSIGNED_GRADE_POINTS_EARNED_CHANGE" | "MAX_POINTS_CHANGE"
[src]

The type of grade change at this time in the submission grade history.

§
gradeTimestamp?: Date
[src]

When the grade of the submission was changed.

§
maxPoints?: number
[src]

The denominator of the grade at this time in the submission grade history.

§
pointsEarned?: number
[src]

The numerator of the grade at this time in the submission grade history.