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

CreateCommentRequest

import type { CreateCommentRequest } from "https://aws-api.deno.dev/v0.3/services/workdocs.ts?docs=full";
interface CreateCommentRequest {
AuthenticationToken?: string | null;
DocumentId: string;
NotifyCollaborators?: boolean | null;
ParentId?: string | null;
Text: string;
ThreadId?: string | null;
VersionId: string;
Visibility?: CommentVisibilityType | null;
}

§Properties

§
AuthenticationToken?: string | null
[src]

Amazon WorkDocs authentication token. Not required when using AWS administrator credentials to access the API.

§
DocumentId: string
[src]

The ID of the document.

§
NotifyCollaborators?: boolean | null
[src]

Set this parameter to TRUE to send an email out to the document collaborators after the comment is created.

§
ParentId?: string | null
[src]

The ID of the parent comment.

§
Text: string
[src]

The text of the comment.

§
ThreadId?: string | null
[src]

The ID of the root comment in the thread.

§
VersionId: string
[src]

The ID of the document version.

§
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.