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

AddMatterPermissionsRequest

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

Add an account with the permission specified. The role cannot be owner. If an account already has a role in the matter, the existing role is overwritten.

interface AddMatterPermissionsRequest {
ccMe?: boolean;
matterPermission?: MatterPermission;
sendEmails?: boolean;
}

§Properties

§
ccMe?: boolean
[src]

Only relevant if sendEmails is true. To CC the requestor in the email message, set to true. To not CC requestor, set to false.

§
matterPermission?: MatterPermission
[src]

The account and its role to add.

§
sendEmails?: boolean
[src]

To send a notification email to the added account, set to true. To not send a notification email, set to false.