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

PullRequest

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

Returns information about a pull request.

interface PullRequest {
approvalRules?: ApprovalRule[] | null;
authorArn?: string | null;
clientRequestToken?: string | null;
creationDate?: Date | number | null;
description?: string | null;
lastActivityDate?: Date | number | null;
pullRequestId?: string | null;
pullRequestStatus?: PullRequestStatusEnum | null;
pullRequestTargets?: PullRequestTarget[] | null;
revisionId?: string | null;
title?: string | null;
}

§Properties

§
approvalRules?: ApprovalRule[] | null
[src]

The approval rules applied to the pull request.

§
authorArn?: string | null
[src]

The Amazon Resource Name (ARN) of the user who created the pull request.

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

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

The date and time the pull request was originally created, in timestamp format.

§
description?: string | null
[src]

The user-defined description of the pull request. This description can be used to clarify what should be reviewed and other details of the request.

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

The day and time of the last user or system activity on the pull request, in timestamp format.

§
pullRequestId?: string | null
[src]

The system-generated ID of the pull request.

§
pullRequestStatus?: PullRequestStatusEnum | null
[src]

The status of the pull request. Pull request status can only change from OPEN to CLOSED.

§
pullRequestTargets?: PullRequestTarget[] | null
[src]

The targets of the pull request, including the source branch and destination branch for the pull request.

§
revisionId?: string | null
[src]

The system-generated revision ID for the pull request.

§
title?: string | null
[src]

The user-defined title of the pull request. This title is displayed in the list of pull requests to other repository users.