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

ResolveAccessProposalRequest

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

Request message for resolving an AccessProposal on a file.

interface ResolveAccessProposalRequest {
action?: "ACTION_UNSPECIFIED" | "ACCEPT" | "DENY";
role?: string[];
sendNotification?: boolean;
view?: string;
}

§Properties

§
action?: "ACTION_UNSPECIFIED" | "ACCEPT" | "DENY"
[src]

Required. The action to take on the AccessProposal.

§
role?: string[]
[src]

Optional. The roles the approver has allowed, if any. Note: This field is required for the ACCEPT action.

§
sendNotification?: boolean
[src]

Optional. Whether to send an email to the requester when the AccessProposal is denied or accepted.

§
view?: string
[src]

Optional. Indicates the view for this access proposal. This should only be set when the proposal belongs to a view. published is the only supported value.