Firestore v1 API - Class RunAggregationQueryResponse (3.3.0)

public sealed class RunAggregationQueryResponse : IMessage<RunAggregationQueryResponse>, IEquatable<RunAggregationQueryResponse>, IDeepCloneable<RunAggregationQueryResponse>, IBufferMessage, IMessage

Reference documentation and code samples for the Firestore v1 API class RunAggregationQueryResponse.

The response for [Firestore.RunAggregationQuery][google.firestore.v1.Firestore.RunAggregationQuery].

Inheritance

object > RunAggregationQueryResponse

Namespace

Google.Cloud.Firestore.V1

Assembly

Google.Cloud.Firestore.V1.dll

Constructors

RunAggregationQueryResponse()

public RunAggregationQueryResponse()

RunAggregationQueryResponse(RunAggregationQueryResponse)

public RunAggregationQueryResponse(RunAggregationQueryResponse other)
Parameter
NameDescription
otherRunAggregationQueryResponse

Properties

ReadTime

public Timestamp ReadTime { get; set; }

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.

Property Value
TypeDescription
Timestamp

Result

public AggregationResult Result { get; set; }

A single aggregation result.

Not present when reporting partial progress.

Property Value
TypeDescription
AggregationResult

Transaction

public ByteString Transaction { get; set; }

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.

Property Value
TypeDescription
ByteString