licenses = $licenses; } /** * @return string[] */ public function getLicenses() { return $this->licenses; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param string */ public function setVersion($version) { $this->version = $version; } /** * @return string */ public function getVersion() { return $this->version; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PackageVersion::class, 'Google_Service_OnDemandScanning_PackageVersion');