create = $create; } /** * @return ColumnFamily */ public function getCreate() { return $this->create; } /** * @param bool */ public function setDrop($drop) { $this->drop = $drop; } /** * @return bool */ public function getDrop() { return $this->drop; } /** * @param string */ public function setId($id) { $this->id = $id; } /** * @return string */ public function getId() { return $this->id; } /** * @param ColumnFamily */ public function setUpdate(ColumnFamily $update) { $this->update = $update; } /** * @return ColumnFamily */ public function getUpdate() { return $this->update; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Modification::class, 'Google_Service_BigtableAdmin_Modification');