Show / Hide Table of Contents

Class Entity

A Datastore data object. Must not exceed 1 MiB - 4 bytes.

Inheritance
object
Entity
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Datastore.v1beta3.Data
Assembly: Google.Apis.Datastore.v1beta3.dll
Syntax
public class Entity : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

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.

Declaration
[JsonProperty("key")]
public virtual Key Key { get; set; }
Property Value
Type Description
Key

Properties

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 map keys, represented as UTF-8, must not exceed 1,500 bytes and cannot be empty.

Declaration
[JsonProperty("properties")]
public virtual IDictionary<string, Value> Properties { get; set; }
Property Value
Type Description
IDictionary<string, Value>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX