deviceId = $deviceId; } /** * @return string */ public function getDeviceId() { return $this->deviceId; } /** * The device report updated with the latest app states. This field will * always be present. * * @param DeviceReport $report */ public function setReport(DeviceReport $report) { $this->report = $report; } /** * @return DeviceReport */ public function getReport() { return $this->report; } /** * The ID of the user. This field will always be present. * * @param string $userId */ public function setUserId($userId) { $this->userId = $userId; } /** * @return string */ public function getUserId() { return $this->userId; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DeviceReportUpdateEvent::class, 'Google_Service_AndroidEnterprise_DeviceReportUpdateEvent');