Show / Hide Table of Contents

Class LookupResponse

The response for Datastore.Lookup.

Inheritance
System.Object
LookupResponse
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Datastore.v1.Data
Assembly: Google.Apis.Datastore.v1.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
System.Collections.Generic.IList<Key>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.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
System.Collections.Generic.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
System.Collections.Generic.IList<EntityResult>

Implements

Google.Apis.Requests.IDirectResponseSchema
Back to top