customFeatures = $customFeatures; } /** * @return array[] */ public function getCustomFeatures() { return $this->customFeatures; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param string[] */ public function setTableColumns($tableColumns) { $this->tableColumns = $tableColumns; } /** * @return string[] */ public function getTableColumns() { return $this->tableColumns; } /** * @param bool[] */ public function setTableColumnsDescending($tableColumnsDescending) { $this->tableColumnsDescending = $tableColumnsDescending; } /** * @return bool[] */ public function getTableColumnsDescending() { return $this->tableColumnsDescending; } /** * @param string */ public function setType($type) { $this->type = $type; } /** * @return string */ public function getType() { return $this->type; } /** * @param bool */ public function setUnique($unique) { $this->unique = $unique; } /** * @return bool */ public function getUnique() { return $this->unique; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(IndexEntity::class, 'Google_Service_DatabaseMigrationService_IndexEntity');