availableFeatures = $availableFeatures; } /** * @return string[] */ public function getAvailableFeatures() { return $this->availableFeatures; } /** * @param bool */ public function setDefaultVersion($defaultVersion) { $this->defaultVersion = $defaultVersion; } /** * @return bool */ public function getDefaultVersion() { return $this->defaultVersion; } /** * @param string */ public function setType($type) { $this->type = $type; } /** * @return string */ public function getType() { return $this->type; } /** * @param string */ public function setVersionNumber($versionNumber) { $this->versionNumber = $versionNumber; } /** * @return string */ public function getVersionNumber() { return $this->versionNumber; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Version::class, 'Google_Service_DataFusion_Version');