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

PathElement

import type { PathElement } from "https://googleapis.deno.dev/v1/datastore:v1.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 PathElement {
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 "". Must be valid UTF-8 bytes. Legacy values that are not valid UTF-8 are encoded as __bytes__ where `` is the base-64 encoding of the bytes.

§
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 "". Must be valid UTF-8 bytes. Legacy values that are not valid UTF-8 are encoded as __bytes__ where `` is the base-64 encoding of the bytes.