Class AggregationResultBatch
A batch of aggregation results produced by an aggregation query.
Implements
Inherited Members
Namespace: Google.Apis.Datastore.v1beta3.Data
Assembly: Google.Apis.Datastore.v1beta3.dll
Syntax
public class AggregationResultBatch : IDirectResponseSchema
Properties
AggregationResults
The aggregation results for this batch.
Declaration
[JsonProperty("aggregationResults")]
public virtual IList<AggregationResult> AggregationResults { get; set; }
Property Value
Type | Description |
---|---|
IList<AggregationResult> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
MoreResults
The state of the query after the current batch. Only COUNT(*) aggregations are supported in the initial
launch. Therefore, expected result type is limited to NO_MORE_RESULTS
.
Declaration
[JsonProperty("moreResults")]
public virtual string MoreResults { get; set; }
Property Value
Type | Description |
---|---|
string |
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
Read timestamp this batch was returned from. In a single transaction, subsequent query result batches for the same query can have a greater timestamp. Each batch's read timestamp is valid for all preceding batches.
Declaration
[JsonProperty("readTime")]
public virtual string ReadTimeRaw { get; set; }
Property Value
Type | Description |
---|---|
string |