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

GooglePrivacyDlpV2PathElement

import type { GooglePrivacyDlpV2PathElement } from "https://googleapis.deno.dev/v1/dlp:v2.ts";

A (kind, ID/name) pair used to construct a key path. If either name or ID is set, the element is complete. If neither is set, the element is incomplete.

interface GooglePrivacyDlpV2PathElement {
id?: bigint;
kind?: string;
name?: string;
}

§Properties

§
id?: bigint
[src]

The auto-allocated ID of the entity. Never equal to zero. Values less than zero are discouraged and may not be supported in the future.

§
kind?: string
[src]

The kind of the entity. A kind matching regex __.*__ is reserved/read-only. A kind must not contain more than 1500 bytes when UTF-8 encoded. Cannot be "".

§
name?: string
[src]

The name of the entity. A name matching regex __.*__ is reserved/read-only. A name must not be more than 1500 bytes when UTF-8 encoded. Cannot be "".