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

PullRequestCreatedEventMetadata

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

Metadata about the pull request that is used when comparing the pull request source with its destination.

interface PullRequestCreatedEventMetadata {
destinationCommitId?: string | null;
mergeBase?: string | null;
repositoryName?: string | null;
sourceCommitId?: string | null;
}

§Properties

§
destinationCommitId?: string | null
[src]

The commit ID of the tip of the branch specified as the destination branch when the pull request was created.

§
mergeBase?: string | null
[src]

The commit ID of the most recent commit that the source branch and the destination branch have in common.

§
repositoryName?: string | null
[src]

The name of the repository where the pull request was created.

§
sourceCommitId?: string | null
[src]

The commit ID on the source branch used when the pull request was created.