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

PostCommentReplyInput

import type { PostCommentReplyInput } from "https://aws-api.deno.dev/v0.3/services/codecommit.ts?docs=full";
interface PostCommentReplyInput {
clientRequestToken?: string | null;
content: string;
inReplyTo: string;
}

§Properties

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

§
content: string
[src]

The contents of your reply to a comment.

§
inReplyTo: string
[src]

The system-generated ID of the comment to which you want to reply. To get this ID, use "GetCommentsForComparedCommit" or "GetCommentsForPullRequest".