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

GetCommentsForPullRequestInput

import type { GetCommentsForPullRequestInput } from "https://aws-api.deno.dev/v0.3/services/codecommit.ts?docs=full";
interface GetCommentsForPullRequestInput {
afterCommitId?: string | null;
beforeCommitId?: string | null;
maxResults?: number | null;
nextToken?: string | null;
pullRequestId: string;
repositoryName?: string | null;
}

§Properties

§
afterCommitId?: string | null
[src]

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

§
beforeCommitId?: string | null
[src]

The full commit ID of the commit in the destination branch that was the tip of the branch at the time the pull request was created.

§
maxResults?: number | null
[src]

A non-zero, non-negative integer used to limit the number of returned results. The default is 100 comments. You can return up to 500 comments with a single request.

§
nextToken?: string | null
[src]

An enumeration token that, when provided in a request, returns the next batch of the results.

§
pullRequestId: string
[src]

The system-generated ID of the pull request. To get this ID, use "ListPullRequests".

§
repositoryName?: string | null
[src]

The name of the repository that contains the pull request.