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

Comment

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

Describes a comment.

interface Comment {
CommentId: string;
Contributor?: User | null;
CreatedTimestamp?: Date | number | null;
ParentId?: string | null;
RecipientId?: string | null;
Status?: CommentStatusType | null;
Text?: string | null;
ThreadId?: string | null;
Visibility?: CommentVisibilityType | null;
}

§Properties

§
CommentId: string
[src]

The ID of the comment.

§
Contributor?: User | null
[src]

The details of the user who made the comment.

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

The time that the comment was created.

§
ParentId?: string | null
[src]

The ID of the parent comment.

§
RecipientId?: string | null
[src]

If the comment is a reply to another user's comment, this field contains the user ID of the user being replied to.

§
Status?: CommentStatusType | null
[src]

The status of the comment.

§
Text?: string | null
[src]

The text of the comment.

§
ThreadId?: string | null
[src]

The ID of the root comment in the thread.

§
Visibility?: CommentVisibilityType | null
[src]

The visibility of the comment. Options are either PRIVATE, where the comment is visible only to the comment author and document owner and co-owners, or PUBLIC, where the comment is visible to document owners, co-owners, and contributors.