FileDiff
import type { FileDiff } from "https://googleapis.deno.dev/v1/securesourcemanager:v1.ts";
Metadata of a FileDiff. FileDiff represents a single file diff in a pull request.
interface FileDiff {
readonly action?:
| "ACTION_UNSPECIFIED"
| "ADDED"
| "MODIFIED"
| "DELETED";
readonly name?: string;
readonly patch?: string;
readonly sha?: string;
}