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

PullRequestSourceReferenceUpdatedEventMetadata

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

Information about an update to the source branch of a pull request.

interface PullRequestSourceReferenceUpdatedEventMetadata {
afterCommitId?: string | null;
beforeCommitId?: string | null;
mergeBase?: string | null;
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 pull request was updated.

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

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