debugStats = $debugStats; } /** * @return array[] */ public function getDebugStats() { return $this->debugStats; } /** * Total time to execute the query in the backend. * * @param string $executionDuration */ public function setExecutionDuration($executionDuration) { $this->executionDuration = $executionDuration; } /** * @return string */ public function getExecutionDuration() { return $this->executionDuration; } /** * Total billable read operations. * * @param string $readOperations */ public function setReadOperations($readOperations) { $this->readOperations = $readOperations; } /** * @return string */ public function getReadOperations() { return $this->readOperations; } /** * Total number of results returned, including documents, projections, * aggregation results, keys. * * @param string $resultsReturned */ public function setResultsReturned($resultsReturned) { $this->resultsReturned = $resultsReturned; } /** * @return string */ public function getResultsReturned() { return $this->resultsReturned; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ExecutionStats::class, 'Google_Service_Firestore_ExecutionStats');