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

About

import type { About } from "https://googleapis.deno.dev/v1/drive:v3.ts";

Information about the user, the user's Drive, and system capabilities.

interface About {
appInstalled?: boolean;
canCreateDrives?: boolean;
canCreateTeamDrives?: boolean;
driveThemes?: {
backgroundImageLink?: string;
colorRgb?: string;
id?: string;
}
[]
;
exportFormats?: {
[key: string]: string[];
}
;
folderColorPalette?: string[];
importFormats?: {
[key: string]: string[];
}
;
kind?: string;
maxImportSizes?: {
[key: string]: bigint;
}
;
maxUploadSize?: bigint;
storageQuota?: {
limit?: bigint;
usage?: bigint;
usageInDrive?: bigint;
usageInDriveTrash?: bigint;
}
;
teamDriveThemes?: {
backgroundImageLink?: string;
colorRgb?: string;
id?: string;
}
[]
;
user?: User;
}

§Properties

§
appInstalled?: boolean
[src]

Whether the user has installed the requesting app.

§
canCreateDrives?: boolean
[src]

Whether the user can create shared drives.

§
canCreateTeamDrives?: boolean
[src]

Deprecated: Use canCreateDrives instead.

§
driveThemes?: {
backgroundImageLink?: string;
colorRgb?: string;
id?: string;
}
[]
[src]

A list of themes that are supported for shared drives.

§
exportFormats?: {
[key: string]: string[];
}
[src]

A map of source MIME type to possible targets for all supported exports.

§
folderColorPalette?: string[]
[src]

The currently supported folder colors as RGB hex strings.

§
importFormats?: {
[key: string]: string[];
}
[src]

A map of source MIME type to possible targets for all supported imports.

§
kind?: string
[src]

Identifies what kind of resource this is. Value: the fixed string "drive#about".

§
maxImportSizes?: {
[key: string]: bigint;
}
[src]

A map of maximum import sizes by MIME type, in bytes.

§
maxUploadSize?: bigint
[src]

The maximum upload size in bytes.

§
storageQuota?: {
limit?: bigint;
usage?: bigint;
usageInDrive?: bigint;
usageInDriveTrash?: bigint;
}
[src]

The user's storage quota limits and usage. For users that are part of an organization with pooled storage, information about the limit and usage across all services is for the organization, rather than the individual user. All fields are measured in bytes.

§
teamDriveThemes?: {
backgroundImageLink?: string;
colorRgb?: string;
id?: string;
}
[]
[src]

Deprecated: Use driveThemes instead.

§
user?: User
[src]

The authenticated user.