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

CommentsForPullRequest

import type { CommentsForPullRequest } from "https://aws-api.deno.dev/v0.3/services/codecommit.ts?docs=full";

Returns information about comments on a pull request.

interface CommentsForPullRequest {
afterBlobId?: string | null;
afterCommitId?: string | null;
beforeBlobId?: string | null;
beforeCommitId?: string | null;
comments?: Comment[] | null;
location?: Location | null;
pullRequestId?: string | null;
repositoryName?: string | null;
}

§Properties

§
afterBlobId?: string | null
[src]

The full blob ID of the file on which you want to comment on the source commit.

§
afterCommitId?: string | null
[src]

The full commit ID of the commit that was the tip of the source branch at the time the comment was made.

§
beforeBlobId?: string | null
[src]

The full blob ID of the file on which you want to comment on the destination commit.

§
beforeCommitId?: string | null
[src]

The full commit ID of the commit that was the tip of the destination branch when the pull request was created. This commit is superceded by the after commit in the source branch when and if you merge the source branch into the destination branch.

§
comments?: Comment[] | null
[src]

An array of comment objects. Each comment object contains information about a comment on the pull request.

§
location?: Location | null
[src]

Location information about the comment on the pull request, including the file name, line number, and whether the version of the file where the comment was made is BEFORE (destination branch) or AFTER (source branch).

§
pullRequestId?: string | null
[src]

The system-generated ID of the pull request.

§
repositoryName?: string | null
[src]

The name of the repository that contains the pull request.