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

UploadFileInfo

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

A resource that contains a URI to which a data file can be uploaded.

interface UploadFileInfo {
readonly headers?: {
[key: string]: string;
}
;
readonly signedUri?: string;
readonly uriExpirationTime?: Date;
}

§Properties

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

Output only. The headers that were used to sign the URI.

§
readonly signedUri?: string
[src]

Output only. Upload URI for the file.

§
readonly uriExpirationTime?: Date
[src]

Output only. Expiration time of the upload URI.