documentCount = $documentCount; } /** * @return string */ public function getDocumentCount() { return $this->documentCount; } /** * Output only. The total number of index entries contained in the backup. * * @param string $indexCount */ public function setIndexCount($indexCount) { $this->indexCount = $indexCount; } /** * @return string */ public function getIndexCount() { return $this->indexCount; } /** * Output only. Summation of the size of all documents and index entries in * the backup, measured in bytes. * * @param string $sizeBytes */ public function setSizeBytes($sizeBytes) { $this->sizeBytes = $sizeBytes; } /** * @return string */ public function getSizeBytes() { return $this->sizeBytes; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleFirestoreAdminV1Stats::class, 'Google_Service_Firestore_GoogleFirestoreAdminV1Stats');