Google Apps Script API
    Preparing search index...

    A change to a file or shared drive.

    interface Change {
        changeType?: string;
        drive?: GoogleAppsScript.Drive_v3.Drive.V3.Schema.Drive;
        driveId?: string;
        file?: GoogleAppsScript.Drive_v3.Drive.V3.Schema.File;
        fileId?: string;
        kind?: string;
        removed?: boolean;
        teamDrive?: GoogleAppsScript.Drive_v3.Drive.V3.Schema.TeamDrive;
        teamDriveId?: string;
        time?: string;
        type?: string;
    }
    Index

    Properties

    changeType?: string

    The type of the change. Possible values are file and drive.

    The updated state of the shared drive. Present if the changeType is drive, the user is still a member of the shared drive, and the shared drive has not been deleted.

    driveId?: string

    The ID of the shared drive associated with this change.

    The updated state of the file. Present if the type is file and the file has not been removed from this list of changes.

    fileId?: string

    The ID of the file which has changed.

    kind?: string

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

    removed?: boolean

    Whether the file or shared drive has been removed from this list of changes, for example by deletion or loss of access.

    Deprecated: Use drive instead.

    teamDriveId?: string

    Deprecated: Use driveId instead.

    time?: string

    The time of this change (RFC 3339 date-time).

    type?: string

    Deprecated: Use changeType instead.