public interface RunAggregationQueryResponseOrBuilder
extends com.google.protobuf.MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
com.google.protobuf.Timestamp |
getReadTime()
The time at which the aggregate result was computed.
|
com.google.protobuf.TimestampOrBuilder |
getReadTimeOrBuilder()
The time at which the aggregate result was computed.
|
AggregationResult |
getResult()
A single aggregation result.
|
AggregationResultOrBuilder |
getResultOrBuilder()
A single aggregation result.
|
com.google.protobuf.ByteString |
getTransaction()
The transaction that was started as part of this request.
|
boolean |
hasReadTime()
The time at which the aggregate result was computed.
|
boolean |
hasResult()
A single aggregation result.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
boolean hasResult()
A single aggregation result. Not present when reporting partial progress.
.google.firestore.v1.AggregationResult result = 1;
AggregationResult getResult()
A single aggregation result. Not present when reporting partial progress.
.google.firestore.v1.AggregationResult result = 1;
AggregationResultOrBuilder getResultOrBuilder()
A single aggregation result. Not present when reporting partial progress.
.google.firestore.v1.AggregationResult result = 1;
com.google.protobuf.ByteString getTransaction()
The transaction that was started as part of this request. Only present on the first response when the request requested to start a new transaction.
bytes transaction = 2;
boolean hasReadTime()
The time at which the aggregate result was computed. This is always monotonically increasing; in this case, the previous AggregationResult in the result stream are guaranteed not to have changed between their `read_time` and this one. If the query returns no results, a response with `read_time` and no `result` will be sent, and this represents the time at which the query was run.
.google.protobuf.Timestamp read_time = 3;
com.google.protobuf.Timestamp getReadTime()
The time at which the aggregate result was computed. This is always monotonically increasing; in this case, the previous AggregationResult in the result stream are guaranteed not to have changed between their `read_time` and this one. If the query returns no results, a response with `read_time` and no `result` will be sent, and this represents the time at which the query was run.
.google.protobuf.Timestamp read_time = 3;
com.google.protobuf.TimestampOrBuilder getReadTimeOrBuilder()
The time at which the aggregate result was computed. This is always monotonically increasing; in this case, the previous AggregationResult in the result stream are guaranteed not to have changed between their `read_time` and this one. If the query returns no results, a response with `read_time` and no `result` will be sent, and this represents the time at which the query was run.
.google.protobuf.Timestamp read_time = 3;
Copyright © 2023 Google LLC. All rights reserved.