document = $document; } /** * @return Document */ public function getDocument() { return $this->document; } /** * @param int[] */ public function setRemovedTargetIds($removedTargetIds) { $this->removedTargetIds = $removedTargetIds; } /** * @return int[] */ public function getRemovedTargetIds() { return $this->removedTargetIds; } /** * @param int[] */ public function setTargetIds($targetIds) { $this->targetIds = $targetIds; } /** * @return int[] */ public function getTargetIds() { return $this->targetIds; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DocumentChange::class, 'Google_Service_Firestore_DocumentChange');