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

Grade

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

Grade information associated with a respondent's answer to a question.

interface Grade {
readonly correct?: boolean;
readonly feedback?: Feedback;
readonly score?: number;
}

§Properties

§
readonly correct?: boolean
[src]

Output only. Whether the question was answered correctly or not. A zero-point score is not enough to infer incorrectness, since a correctly answered question could be worth zero points.

§
readonly feedback?: Feedback
[src]

Output only. Additional feedback given for an answer.

§
readonly score?: number
[src]

Output only. The numeric score awarded for the answer.