Show / Hide Table of Contents

Class ExecutionStats

Execution statistics for the query.

Inheritance
object
ExecutionStats
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Firestore.v1.Data
Assembly: Google.Apis.Firestore.v1.dll
Syntax
public class ExecutionStats : IDirectResponseSchema

Properties

DebugStats

Debugging statistics from the execution of the query. Note that the debugging stats are subject to change as Firestore evolves. It could include: { "indexes_entries_scanned": "1000", "documents_scanned": "20", "billing_details" : { "documents_billable": "20", "index_entries_billable": "1000", "min_query_cost": "0" } }

Declaration
[JsonProperty("debugStats")]
public virtual IDictionary<string, object> DebugStats { get; set; }
Property Value
Type Description
IDictionary<string, object>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

ExecutionDuration

Total time to execute the query in the backend.

Declaration
[JsonProperty("executionDuration")]
public virtual object ExecutionDuration { get; set; }
Property Value
Type Description
object

ReadOperations

Total billable read operations.

Declaration
[JsonProperty("readOperations")]
public virtual long? ReadOperations { get; set; }
Property Value
Type Description
long?

ResultsReturned

Total number of results returned, including documents, projections, aggregation results, keys.

Declaration
[JsonProperty("resultsReturned")]
public virtual long? ResultsReturned { get; set; }
Property Value
Type Description
long?

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX