Show / Hide Table of Contents

Class EntityResult

The result of fetching an entity from Datastore.

Inheritance
object
EntityResult
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 EntityResult : IDirectResponseSchema

Properties

CreateTime

The time at which the entity was created. This field is set for FULL entity results. If this entity is missing, this field will not be set.

Declaration
[JsonProperty("createTime")]
public virtual object CreateTime { get; set; }
Property Value
Type Description
object

Cursor

A cursor that points to the position after the result entity. Set only when the EntityResult is part of a QueryResultBatch message.

Declaration
[JsonProperty("cursor")]
public virtual string Cursor { get; set; }
Property Value
Type Description
string

Entity

The resulting entity.

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

ETag

The ETag of the item.

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

UpdateTime

The time at which the entity was last changed. This field is set for FULL entity results. If this entity is missing, this field will not be set.

Declaration
[JsonProperty("updateTime")]
public virtual object UpdateTime { get; set; }
Property Value
Type Description
object

Version

The version of the entity, a strictly positive number that monotonically increases with changes to the entity. This field is set for FULL entity results. For missing entities in LookupResponse, this is the version of the snapshot that was used to look up the entity, and it is always set except for eventually consistent reads.

Declaration
[JsonProperty("version")]
public virtual long? Version { get; set; }
Property Value
Type Description
long?

Implements

IDirectResponseSchema
In This Article
Back to top Generated by DocFX