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

AccessProposal

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

The Access Proposal resource for outstanding access proposals on a file

interface AccessProposal {
createTime?: Date;
fileId?: string;
proposalId?: string;
recipientEmailAddress?: string;
requesterEmailAddress?: string;
requestMessage?: string;
rolesAndViews?: AccessProposalRoleAndView[];
}

§Properties

§
createTime?: Date
[src]

The creation time

§
fileId?: string
[src]

The file id that the proposal for access is on

§
proposalId?: string
[src]

The id of the access proposal

§
recipientEmailAddress?: string
[src]

The email address of the user that will receive permissions if accepted

§
requesterEmailAddress?: string
[src]

The email address of the requesting user

§
requestMessage?: string
[src]

The message that the requester added to the proposal

§

A wrapper for the role and view of an access proposal.