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

FormResponse

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

A form response.

interface FormResponse {
readonly answers?: {
[key: string]: Answer;
}
;
readonly createTime?: Date;
readonly formId?: string;
readonly lastSubmittedTime?: Date;
readonly respondentEmail?: string;
readonly responseId?: string;
readonly totalScore?: number;
}

§Properties

§
readonly answers?: {
[key: string]: Answer;
}
[src]

Output only. The actual answers to the questions, keyed by question_id.

§
readonly createTime?: Date
[src]

Output only. Timestamp for the first time the response was submitted.

§
readonly formId?: string
[src]

Output only. The form ID.

§
readonly lastSubmittedTime?: Date
[src]

Output only. Timestamp for the most recent time the response was submitted. Does not track changes to grades.

§
readonly respondentEmail?: string
[src]

Output only. The email address (if collected) for the respondent.

§
readonly responseId?: string
[src]

Output only. The response ID.

§
readonly totalScore?: number
[src]

Output only. The total number of points the respondent received for their submission Only set if the form was a quiz and the response was graded. This includes points automatically awarded via autograding adjusted by any manual corrections entered by the form owner.