Google Apps Script API
    Preparing search index...

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

    interface About {
        appInstalled?: boolean;
        canCreateDrives?: boolean;
        canCreateTeamDrives?: boolean;
        driveThemes?: GoogleAppsScript.Drive_v3.Drive.V3.Schema.AboutDriveThemes[];
        exportFormats?: Record<string, any>;
        folderColorPalette?: string[];
        importFormats?: Record<string, any>;
        kind?: string;
        maxImportSizes?: Record<string, string>;
        maxUploadSize?: string;
        storageQuota?: AboutStorageQuota;
        teamDriveThemes?: GoogleAppsScript.Drive_v3.Drive.V3.Schema.AboutTeamDriveThemes[];
        user?: GoogleAppsScript.Drive_v3.Drive.V3.Schema.User;
    }
    Index

    Properties

    appInstalled?: boolean

    Whether the user has installed the requesting app.

    canCreateDrives?: boolean

    Whether the user can create shared drives.

    canCreateTeamDrives?: boolean

    Deprecated: Use canCreateDrives instead.

    A list of themes that are supported for shared drives.

    exportFormats?: Record<string, any>

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

    folderColorPalette?: string[]

    The currently supported folder colors as RGB hex strings.

    importFormats?: Record<string, any>

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

    kind?: string

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

    maxImportSizes?: Record<string, string>

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

    maxUploadSize?: string

    The maximum upload size in bytes.

    storageQuota?: AboutStorageQuota

    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.

    Deprecated: Use driveThemes instead.

    The authenticated user.