Skip to main content
Module

x/google_datastore/types.d.ts>Entity

A set of APIs that allow interfacing to Google Datastore on GCP from Deno.
Go to Latest
interface Entity
import { type Entity } from "https://deno.land/x/google_datastore@0.0.14/types.d.ts";

A Datastore data object. An entity is limited to 1 megabyte when stored.

That roughly corresponds to a limit of 1 megabyte for the serialized form of this message.

Properties

optional
key: Key

The entity's key. An entity must have a key, unless otherwise documented (for example, an entity in Value.entity_value may have no key). An entity's kind is its key path's last element's kind, or null if it has no key.

optional
properties: Record<string, Value>

The entity's properties. The map's keys are property names. A property name matching regex __.*__ is reserved. A reserved property name is forbidden in certain documented contexts. The name must not contain more than 500 characters. The name cannot be "".