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.3/services/codecommit.ts?docs=full";

Returns information about a specific comment.

interface Comment {
authorArn?: string | null;
callerReactions?: string[] | null;
clientRequestToken?: string | null;
commentId?: string | null;
content?: string | null;
creationDate?: Date | number | null;
deleted?: boolean | null;
inReplyTo?: string | null;
lastModifiedDate?: Date | number | null;
reactionCounts?: {
[key: string]: number | null | undefined;
}
| null;
}

§Properties

§
authorArn?: string | null
[src]

The Amazon Resource Name (ARN) of the person who posted the comment.

§
callerReactions?: string[] | null
[src]

The emoji reactions to a comment, if any, submitted by the user whose credentials are associated with the call to the API.

§
clientRequestToken?: string | null
[src]

A unique, client-generated idempotency token that, when provided in a request, ensures the request cannot be repeated with a changed parameter. If a request is received with the same parameters and a token is included, the request returns information about the initial request that used that token.

§
commentId?: string | null
[src]

The system-generated comment ID.

§
content?: string | null
[src]

The content of the comment.

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

The date and time the comment was created, in timestamp format.

§
deleted?: boolean | null
[src]

A Boolean value indicating whether the comment has been deleted.

§
inReplyTo?: string | null
[src]

The ID of the comment for which this comment is a reply, if any.

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

The date and time the comment was most recently modified, in timestamp format.

§
reactionCounts?: {
[key: string]: number | null | undefined;
}
| null
[src]

A string to integer map that represents the number of individual users who have responded to a comment with the specified reactions.