parameters = $parameters; } /** * @return string[] */ public function getParameters() { return $this->parameters; } /** * @param StorageDescriptor */ public function setStorageDescriptor(StorageDescriptor $storageDescriptor) { $this->storageDescriptor = $storageDescriptor; } /** * @return StorageDescriptor */ public function getStorageDescriptor() { return $this->storageDescriptor; } /** * @param string */ public function setTableType($tableType) { $this->tableType = $tableType; } /** * @return string */ public function getTableType() { return $this->tableType; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(HiveTableOptions::class, 'Google_Service_BigLakeService_HiveTableOptions');