architecture = $architecture; } /** * @return string */ public function getArchitecture() { return $this->architecture; } /** * @param int */ public function setMaxClockSpeed($maxClockSpeed) { $this->maxClockSpeed = $maxClockSpeed; } /** * @return int */ public function getMaxClockSpeed() { return $this->maxClockSpeed; } /** * @param string */ public function setModel($model) { $this->model = $model; } /** * @return string */ public function getModel() { return $this->model; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleChromeManagementV1CpuInfo::class, 'Google_Service_ChromeManagement_GoogleChromeManagementV1CpuInfo');