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

CommentMetadata

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

Describes the metadata of a comment.

interface CommentMetadata {
CommentId?: string | null;
CommentStatus?: CommentStatusType | null;
Contributor?: User | null;
CreatedTimestamp?: Date | number | null;
RecipientId?: string | null;
}

§Properties

§
CommentId?: string | null
[src]

The ID of the comment.

§
CommentStatus?: CommentStatusType | null
[src]

The status of the comment.

§
Contributor?: User | null
[src]

The user who made the comment.

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

The timestamp that the comment was created.

§
RecipientId?: string | null
[src]

The ID of the user being replied to.