deviceId = $deviceId; } /** * @return string */ public function getDeviceId() { return $this->deviceId; } /** * The model of the device. * * @param string $deviceModel */ public function setDeviceModel($deviceModel) { $this->deviceModel = $deviceModel; } /** * @return string */ public function getDeviceModel() { return $this->deviceModel; } /** * The device property which was changed. * * @param string $deviceProperty */ public function setDeviceProperty($deviceProperty) { $this->deviceProperty = $deviceProperty; } /** * @return string */ public function getDeviceProperty() { return $this->deviceProperty; } /** * The type of the device. * * @param string $deviceType */ public function setDeviceType($deviceType) { $this->deviceType = $deviceType; } /** * @return string */ public function getDeviceType() { return $this->deviceType; } /** * Required for iOS, empty for others. * * @param string $iosVendorId */ public function setIosVendorId($iosVendorId) { $this->iosVendorId = $iosVendorId; } /** * @return string */ public function getIosVendorId() { return $this->iosVendorId; } /** * The new value of the device property after the change. * * @param string $newValue */ public function setNewValue($newValue) { $this->newValue = $newValue; } /** * @return string */ public function getNewValue() { return $this->newValue; } /** * The old value of the device property before the change. * * @param string $oldValue */ public function setOldValue($oldValue) { $this->oldValue = $oldValue; } /** * @return string */ public function getOldValue() { return $this->oldValue; } /** * The device resource ID. * * @param string $resourceId */ public function setResourceId($resourceId) { $this->resourceId = $resourceId; } /** * @return string */ public function getResourceId() { return $this->resourceId; } /** * The serial number of the device. * * @param string $serialNumber */ public function setSerialNumber($serialNumber) { $this->serialNumber = $serialNumber; } /** * @return string */ public function getSerialNumber() { return $this->serialNumber; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SuspiciousActivitySecurityDetail::class, 'Google_Service_AlertCenter_SuspiciousActivitySecurityDetail');