Google Apps Script API
    Preparing search index...

    The apps resource provides a list of apps that a user has installed, with information about each app's supported MIME types, file extensions, and other details. Some resource methods (such as apps.get) require an appId. Use the apps.list method to retrieve the ID for an installed application.

    interface App {
        authorized?: boolean;
        createInFolderTemplate?: string;
        createUrl?: string;
        hasDriveWideScope?: boolean;
        icons?: GoogleAppsScript.Drive_v3.Drive.V3.Schema.AppIcons[];
        id?: string;
        installed?: boolean;
        kind?: string;
        longDescription?: string;
        name?: string;
        objectType?: string;
        openUrlTemplate?: string;
        primaryFileExtensions?: string[];
        primaryMimeTypes?: string[];
        productId?: string;
        productUrl?: string;
        secondaryFileExtensions?: string[];
        secondaryMimeTypes?: string[];
        shortDescription?: string;
        supportsCreate?: boolean;
        supportsImport?: boolean;
        supportsMultiOpen?: boolean;
        supportsOfflineCreate?: boolean;
        useByDefault?: boolean;
    }
    Index

    Properties

    authorized?: boolean

    Whether the app is authorized to access data on the user's Drive.

    createInFolderTemplate?: string

    The template URL to create a file with this app in a given folder. The template contains the {folderId} to be replaced by the folder ID house the new file.

    createUrl?: string

    The URL to create a file with this app.

    hasDriveWideScope?: boolean

    Whether the app has Drive-wide scope. An app with Drive-wide scope can access all files in the user's Drive.

    The various icons for the app.

    id?: string

    The ID of the app.

    installed?: boolean

    Whether the app is installed.

    kind?: string

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

    longDescription?: string

    A long description of the app.

    name?: string

    The name of the app.

    objectType?: string

    The type of object this app creates such as a Chart. If empty, the app name should be used instead.

    openUrlTemplate?: string

    The template URL for opening files with this app. The template contains {ids} or {exportIds} to be replaced by the actual file IDs. For more information, see Open Files for the full documentation.

    primaryFileExtensions?: string[]

    The list of primary file extensions.

    primaryMimeTypes?: string[]

    The list of primary MIME types.

    productId?: string

    The ID of the product listing for this app.

    productUrl?: string

    A link to the product listing for this app.

    secondaryFileExtensions?: string[]

    The list of secondary file extensions.

    secondaryMimeTypes?: string[]

    The list of secondary MIME types.

    shortDescription?: string

    A short description of the app.

    supportsCreate?: boolean

    Whether this app supports creating objects.

    supportsImport?: boolean

    Whether this app supports importing from Google Docs.

    supportsMultiOpen?: boolean

    Whether this app supports opening more than one file.

    supportsOfflineCreate?: boolean

    Whether this app supports creating files when offline.

    useByDefault?: boolean

    Whether the app is selected as the default handler for the types it supports.