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

Review

import type { Review } from "https://googleapis.deno.dev/v1/securesourcemanager:v1.ts";

The review summary comment.

interface Review {
actionType?:
| "ACTION_TYPE_UNSPECIFIED"
| "COMMENT"
| "CHANGE_REQUESTED"
| "APPROVED";
body?: string;
readonly effectiveCommitSha?: string;
}

§Properties

§
actionType?: "ACTION_TYPE_UNSPECIFIED" | "COMMENT" | "CHANGE_REQUESTED" | "APPROVED"
[src]

Required. The review action type.

§
body?: string
[src]

Optional. The comment body.

§
readonly effectiveCommitSha?: string
[src]

Output only. The effective commit sha this review is pointing to.