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

CommitDiffSourceCodeType

import type { CommitDiffSourceCodeType } from "https://aws-api.deno.dev/v0.4/services/codegurureviewer.ts?docs=full";

A type of SourceCodeType that specifies the commit diff for a pull request on an associated repository. The SourceCommit and DestinationCommit fields are required to do a pull request code review.

interface CommitDiffSourceCodeType {
DestinationCommit?: string | null;
MergeBaseCommit?: string | null;
SourceCommit?: string | null;
}

§Properties

§
DestinationCommit?: string | null
[src]

The SHA of the destination commit used to generate a commit diff. This field is required for a pull request code review.

§
MergeBaseCommit?: string | null
[src]

The SHA of the merge base of a commit.

§
SourceCommit?: string | null
[src]

The SHA of the source commit used to generate a commit diff. This field is required for a pull request code review.