hwVersion = $hwVersion; } /** * @return string */ public function getHwVersion() { return $this->hwVersion; } /** * @param string */ public function setManufacturer($manufacturer) { $this->manufacturer = $manufacturer; } /** * @return string */ public function getManufacturer() { return $this->manufacturer; } /** * @param string */ public function setModel($model) { $this->model = $model; } /** * @return string */ public function getModel() { return $this->model; } /** * @param string */ public function setSwVersion($swVersion) { $this->swVersion = $swVersion; } /** * @return string */ public function getSwVersion() { return $this->swVersion; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DeviceInfo::class, 'Google_Service_HomeGraphService_DeviceInfo');