manufacturer = $manufacturer; } /** * @return string */ public function getManufacturer() { return $this->manufacturer; } /** * Required. The model of the SoC, eg. "Tensor" Value of build property * "ro.soc.model" * https://developer.android.com/reference/android/os/Build#SOC_MODEL * Required. * * @param string $model */ 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(SystemOnChip::class, 'Google_Service_AndroidPublisher_SystemOnChip');