Class LookupResponse
The response for Datastore.Lookup.
Implements
Inherited Members
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
object representation of ReadTimeRaw.
Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use ReadTimeDateTimeOffset instead.")]
public virtual object ReadTime { get; set; }
Property Value
| Type | Description |
|---|---|
| object |
ReadTimeDateTimeOffset
DateTimeOffset representation of ReadTimeRaw.
Declaration
[JsonIgnore]
public virtual DateTimeOffset? ReadTimeDateTimeOffset { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTimeOffset? |
ReadTimeRaw
The time at which these entities were read or found missing.
Declaration
[JsonProperty("readTime")]
public virtual string ReadTimeRaw { get; set; }
Property Value
| Type | Description |
|---|---|
| string |