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

HeldAccount

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

An account covered by a hold. This structure is immutable. It can be an individual account or a Google Group, depending on the service. 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 HeldAccount {
accountId?: string;
email?: string;
firstName?: string;
holdTime?: Date;
lastName?: string;
}

§Properties

§
accountId?: string
[src]

The account ID, as provided by the Admin SDK.

§
email?: string
[src]

The primary email address of the account. If used as an input, this takes precedence over accountId.

§
firstName?: string
[src]

Output only. The first name of the account holder.

§
holdTime?: Date
[src]

Output only. When the account was put on hold.

§
lastName?: string
[src]

Output only. The last name of the account holder.