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

SavedQuery

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

The definition of a saved query. To work with Vault resources, the account must have the required Vault privileges 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 SavedQuery {
createTime?: Date;
displayName?: string;
matterId?: string;
query?: Query;
savedQueryId?: string;
}

§Properties

§
createTime?: Date
[src]

Output only. The server-generated timestamp when the saved query was created.

§
displayName?: string
[src]

The name of the saved query.

§
matterId?: string
[src]

Output only. The matter ID of the matter the saved query is saved in. The server does not use this field during create and always uses matter ID in the URL.

§
query?: Query
[src]

The search parameters of the saved query.

§
savedQueryId?: string
[src]

A unique identifier for the saved query.