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

Answer

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

The submitted answer for a question.

interface Answer {
readonly fileUploadAnswers?: FileUploadAnswers;
readonly grade?: Grade;
readonly questionId?: string;
readonly textAnswers?: TextAnswers;
}

§Properties

§
readonly fileUploadAnswers?: FileUploadAnswers
[src]

Output only. The answers to a file upload question.

§
readonly grade?: Grade
[src]

Output only. The grade for the answer if the form was a quiz.

§
readonly questionId?: string
[src]

Output only. The question's ID. See also Question.question_id.

§
readonly textAnswers?: TextAnswers
[src]

Output only. The specific answers as text.