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

DocumentVersionMetadata

import type { DocumentVersionMetadata } from "https://aws-api.deno.dev/v0.4/services/workdocs.ts?docs=full";

Describes a version of a document.

interface DocumentVersionMetadata {
ContentCreatedTimestamp?: Date | number | null;
ContentModifiedTimestamp?: Date | number | null;
ContentType?: string | null;
CreatedTimestamp?: Date | number | null;
CreatorId?: string | null;
Id?: string | null;
ModifiedTimestamp?: Date | number | null;
Name?: string | null;
Signature?: string | null;
Size?: number | null;
Source?: [key in DocumentSourceType]: string | null | undefined | null;
Status?: DocumentStatusType | null;
Thumbnail?: [key in DocumentThumbnailType]: string | null | undefined | null;
}

§Properties

§
ContentCreatedTimestamp?: Date | number | null
[src]

The timestamp when the content of the document was originally created.

§
ContentModifiedTimestamp?: Date | number | null
[src]

The timestamp when the content of the document was modified.

§
ContentType?: string | null
[src]

The content type of the document.

§
CreatedTimestamp?: Date | number | null
[src]

The timestamp when the document was first uploaded.

§
CreatorId?: string | null
[src]

The ID of the creator.

§
Id?: string | null
[src]

The ID of the version.

§
ModifiedTimestamp?: Date | number | null
[src]

The timestamp when the document was last uploaded.

§
Name?: string | null
[src]

The name of the version.

§
Signature?: string | null
[src]

The signature of the document.

§
Size?: number | null
[src]

The size of the document, in bytes.

§
Source?: [key in DocumentSourceType]: string | null | undefined | null
[src]

The source of the document.

§
Status?: DocumentStatusType | null
[src]

The status of the document.

§
Thumbnail?: [key in DocumentThumbnailType]: string | null | undefined | null
[src]

The thumbnail of the document.