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

FileUploadAnswer

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

Info for a single file submitted to a file upload question.

interface FileUploadAnswer {
readonly fileId?: string;
readonly fileName?: string;
readonly mimeType?: string;
}

§Properties

§
readonly fileId?: string
[src]

Output only. The ID of the Google Drive file.

§
readonly fileName?: string
[src]

Output only. The file name, as stored in Google Drive on upload.

§
readonly mimeType?: string
[src]

Output only. The MIME type of the file, as stored in Google Drive on upload.