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

Matter

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

Represents a matter. To work with Vault resources, the account must have the [required Vault privileges] (https://support.google.com/vault/answer/2799699) and access to the matter. To access a matter, the account must have created the matter, have the matter shared with them, or have the View All Matters privilege.

interface Matter {
description?: string;
matterId?: string;
matterPermissions?: MatterPermission[];
name?: string;
state?:
| "STATE_UNSPECIFIED"
| "OPEN"
| "CLOSED"
| "DELETED";
}

§Properties

§
description?: string
[src]

An optional description for the matter.

§
matterId?: string
[src]

The matter ID, which is generated by the server. Leave blank when creating a matter.

§
matterPermissions?: MatterPermission[]
[src]

Lists the users and their permission for the matter. Currently there is no programmer defined limit on the number of permissions a matter can have.

§
name?: string
[src]

The name of the matter.

§
state?: "STATE_UNSPECIFIED" | "OPEN" | "CLOSED" | "DELETED"
[src]

The state of the matter.