Google Apps Script API
    Preparing search index...

    The metadata for a revision to a file.Some resource methods(such as revisions.update)require a revisionId.Use the revisions.listmethod to retrieve the ID for a revision.

    interface Revision {
        exportLinks?: Record<string, string>;
        id?: string;
        keepForever?: boolean;
        kind?: string;
        lastModifyingUser?: GoogleAppsScript.Drive_v3.Drive.V3.Schema.User;
        md5Checksum?: string;
        mimeType?: string;
        modifiedTime?: string;
        originalFilename?: string;
        publishAuto?: boolean;
        published?: boolean;
        publishedLink?: string;
        publishedOutsideDomain?: boolean;
        size?: string;
    }
    Index

    Properties

    exportLinks?: Record<string, string>

    Output only.Links for exporting Docs Editors files to specific formats.

    id?: string

    Output only.The ID of the revision.

    keepForever?: boolean

    Whether to keep this revision forever,even if it is no longer the head revision.If not set,the revision will be automatically purged 30 days after newer content is uploaded.This can be set on a maximum of 200 revisions for a file.This field is only applicable to files with binary content in Drive.

    kind?: string

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

    Output only.The last user to modify this revision.This field is only populated when the last modification was performed by a signed-in user.

    md5Checksum?: string

    Output only.The MD5 checksum of the revision 's content. This is only applicable to files with binary content in Drive.

    mimeType?: string

    Output only. The MIME type of the revision.

    modifiedTime?: string

    The last time the revision was modified (RFC 3339 date-time).

    originalFilename?: string

    Output only. The original filename used to create this revision. This is only applicable to files with binary content in Drive.

    publishAuto?: boolean

    Whether subsequent revisions will be automatically republished. This is only applicable to Docs Editors files.

    published?: boolean

    Whether this revision is published. This is only applicable to Docs Editors files.

    publishedLink?: string

    Output only. A link to the published revision. This is only populated for Google Sites files.

    publishedOutsideDomain?: boolean

    Whether this revision is published outside the domain. This is only applicable to Docs Editors files.

    size?: string

    Output only. The size of the revision's content in bytes.This is only applicable to files with binary content in Drive.