document = $document; } /** * @return string */ public function getDocument() { return $this->document; } /** * The read timestamp at which the remove was observed. Greater or equal to * the `commit_time` of the change/delete/remove. * * @param string $readTime */ public function setReadTime($readTime) { $this->readTime = $readTime; } /** * @return string */ public function getReadTime() { return $this->readTime; } /** * A set of target IDs for targets that previously matched this document. * * @param int[] $removedTargetIds */ public function setRemovedTargetIds($removedTargetIds) { $this->removedTargetIds = $removedTargetIds; } /** * @return int[] */ public function getRemovedTargetIds() { return $this->removedTargetIds; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DocumentRemove::class, 'Google_Service_Firestore_DocumentRemove');