baseVersion = $baseVersion; } /** * @return string */ public function getBaseVersion() { return $this->baseVersion; } /** * @param Key */ public function setDelete(Key $delete) { $this->delete = $delete; } /** * @return Key */ public function getDelete() { return $this->delete; } /** * @param Entity */ public function setInsert(Entity $insert) { $this->insert = $insert; } /** * @return Entity */ public function getInsert() { return $this->insert; } /** * @param Entity */ public function setUpdate(Entity $update) { $this->update = $update; } /** * @return Entity */ public function getUpdate() { return $this->update; } /** * @param string */ public function setUpdateTime($updateTime) { $this->updateTime = $updateTime; } /** * @return string */ public function getUpdateTime() { return $this->updateTime; } /** * @param Entity */ public function setUpsert(Entity $upsert) { $this->upsert = $upsert; } /** * @return Entity */ public function getUpsert() { return $this->upsert; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Mutation::class, 'Google_Service_Datastore_Mutation');