_propDict)) { if (is_a($this->_propDict["detectionStatus"], "\Microsoft\Graph\SecurityNamespace\Model\DetectionStatus") || is_null($this->_propDict["detectionStatus"])) { return $this->_propDict["detectionStatus"]; } else { $this->_propDict["detectionStatus"] = new DetectionStatus($this->_propDict["detectionStatus"]); return $this->_propDict["detectionStatus"]; } } return null; } /** * Sets the detectionStatus * The status of the detection.The possible values are: detected, blocked, prevented, unknownFutureValue. * * @param DetectionStatus $val The value to assign to the detectionStatus * * @return FileEvidence The FileEvidence */ public function setDetectionStatus($val) { $this->_propDict["detectionStatus"] = $val; return $this; } /** * Gets the fileDetails * The file details. * * @return FileDetails|null The fileDetails */ public function getFileDetails() { if (array_key_exists("fileDetails", $this->_propDict)) { if (is_a($this->_propDict["fileDetails"], "\Microsoft\Graph\SecurityNamespace\Model\FileDetails") || is_null($this->_propDict["fileDetails"])) { return $this->_propDict["fileDetails"]; } else { $this->_propDict["fileDetails"] = new FileDetails($this->_propDict["fileDetails"]); return $this->_propDict["fileDetails"]; } } return null; } /** * Sets the fileDetails * The file details. * * @param FileDetails $val The value to assign to the fileDetails * * @return FileEvidence The FileEvidence */ public function setFileDetails($val) { $this->_propDict["fileDetails"] = $val; return $this; } /** * Gets the mdeDeviceId * A unique identifier assigned to a device by Microsoft Defender for Endpoint. * * @return string|null The mdeDeviceId */ public function getMdeDeviceId() { if (array_key_exists("mdeDeviceId", $this->_propDict)) { return $this->_propDict["mdeDeviceId"]; } else { return null; } } /** * Sets the mdeDeviceId * A unique identifier assigned to a device by Microsoft Defender for Endpoint. * * @param string $val The value of the mdeDeviceId * * @return FileEvidence */ public function setMdeDeviceId($val) { $this->_propDict["mdeDeviceId"] = $val; return $this; } }