Show / Hide Table of Contents

Class LookupResponse

The response for Datastore.Lookup.

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

Properties

Deferred

A list of keys that were not looked up due to resource constraints. The order of results in this field is undefined and has no relation to the order of the keys in the input.

Declaration
[JsonProperty("deferred")]
public virtual IList<Key> Deferred { get; set; }
Property Value
Type Description
IList<Key>

ETag

The ETag of the item.

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

Found

Entities found as ResultType.FULL entities. The order of results in this field is undefined and has no relation to the order of the keys in the input.

Declaration
[JsonProperty("found")]
public virtual IList<EntityResult> Found { get; set; }
Property Value
Type Description
IList<EntityResult>

Missing

Entities not found as ResultType.KEY_ONLY entities. The order of results in this field is undefined and has no relation to the order of the keys in the input.

Declaration
[JsonProperty("missing")]
public virtual IList<EntityResult> Missing { get; set; }
Property Value
Type Description
IList<EntityResult>

ReadTime

The time at which these entities were read or found missing.

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

Implements

IDirectResponseSchema
In This Article
Back to top Generated by DocFX