cpuMake = $cpuMake; } /** * @return string */ public function getCpuMake() { return $this->cpuMake; } /** * @param string */ public function setCpuModel($cpuModel) { $this->cpuModel = $cpuModel; } /** * @return string */ public function getCpuModel() { return $this->cpuModel; } /** * @param string */ public function setDeviceClass($deviceClass) { $this->deviceClass = $deviceClass; } /** * @return string */ public function getDeviceClass() { return $this->deviceClass; } /** * @param int */ public function setGlEsVersion($glEsVersion) { $this->glEsVersion = $glEsVersion; } /** * @return int */ public function getGlEsVersion() { return $this->glEsVersion; } /** * @param string */ public function setManufacturer($manufacturer) { $this->manufacturer = $manufacturer; } /** * @return string */ public function getManufacturer() { return $this->manufacturer; } /** * @param string */ public function setNativePlatform($nativePlatform) { $this->nativePlatform = $nativePlatform; } /** * @return string */ public function getNativePlatform() { return $this->nativePlatform; } /** * @param string */ public function setProductName($productName) { $this->productName = $productName; } /** * @return string */ public function getProductName() { return $this->productName; } /** * @param int */ public function setRamMb($ramMb) { $this->ramMb = $ramMb; } /** * @return int */ public function getRamMb() { return $this->ramMb; } /** * @param int */ public function setScreenDensityDpi($screenDensityDpi) { $this->screenDensityDpi = $screenDensityDpi; } /** * @return int */ public function getScreenDensityDpi() { return $this->screenDensityDpi; } /** * @param int */ public function setScreenHeightPx($screenHeightPx) { $this->screenHeightPx = $screenHeightPx; } /** * @return int */ public function getScreenHeightPx() { return $this->screenHeightPx; } /** * @param int */ public function setScreenWidthPx($screenWidthPx) { $this->screenWidthPx = $screenWidthPx; } /** * @return int */ public function getScreenWidthPx() { return $this->screenWidthPx; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DeviceMetadata::class, 'Google_Service_AndroidPublisher_DeviceMetadata');