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

EnterpriseTopazSidekickCommonDocumentDriveDocumentMetadata

import type { EnterpriseTopazSidekickCommonDocumentDriveDocumentMetadata } from "https://googleapis.deno.dev/v1/cloudsearch:v1.ts";

Meta data for drive documents.

interface EnterpriseTopazSidekickCommonDocumentDriveDocumentMetadata {
documentId?: string;
isPrivate?: boolean;
lastCommentTimeMs?: bigint;
lastEditTimeMs?: bigint;
lastModificationTimeMillis?: bigint;
lastUpdatedTimeMs?: bigint;
lastViewTimeMs?: bigint;
scope?:
| "UNKNOWN_DOCUMENT_SCOPE"
| "LIMITED"
| "DASHER_DOMAIN_WITH_LINK"
| "DASHER_DOMAIN"
| "PUBLIC_WITH_LINK"
| "PUBLIC"
| "TEAM_DRIVE";
}

§Properties

§
documentId?: string
[src]

The drive document cosmo id. Client could use the id to build a URL to open a document. Please use Document.document_id.

§
isPrivate?: boolean
[src]

Additional field to identify whether a document is private since scope set to LIMITED can mean both that the doc is private or that it's shared with others. is_private indicates whether the doc is not shared with anyone except for the owner.

§
lastCommentTimeMs?: bigint
[src]

Timestamp of the most recent comment added to the document in milliseconds since epoch.

§
lastEditTimeMs?: bigint
[src]

Timestamp of the most recent edit from the current user in milliseconds since epoch.

§
lastModificationTimeMillis?: bigint
[src]

Last modification time of the document (independent of the user that modified it).

§
lastUpdatedTimeMs?: bigint
[src]

Timestamp of the last updated time of the document in milliseconds since epoch.

§
lastViewTimeMs?: bigint
[src]

Timestamp of the most recent view from the current user in milliseconds since epoch.

§

The owner of the document.

§
scope?: "UNKNOWN_DOCUMENT_SCOPE" | "LIMITED" | "DASHER_DOMAIN_WITH_LINK" | "DASHER_DOMAIN" | "PUBLIC_WITH_LINK" | "PUBLIC" | "TEAM_DRIVE"
[src]

ACL scope of the document which identifies the sharing status of the doc (e.g., limited, shared with link, team drive, ...).