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

ReviewerResponse

import type { ReviewerResponse } from "https://googleapis.deno.dev/v1/drive:v3.ts";

A response on an Approval made by a specific Reviewer.

interface ReviewerResponse {
kind?: string;
response?:
| "RESPONSE_UNSPECIFIED"
| "NO_RESPONSE"
| "APPROVED"
| "DECLINED";
reviewer?: User;
}

§Properties

§
kind?: string
[src]

This is always drive#reviewerResponse.

§
response?: "RESPONSE_UNSPECIFIED" | "NO_RESPONSE" | "APPROVED" | "DECLINED"
[src]

A Reviewer’s Response for the Approval.

§
reviewer?: User
[src]

The user that is responsible for this response.