_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 RegistryValueEvidence */ public function setMdeDeviceId($val) { $this->_propDict["mdeDeviceId"] = $val; return $this; } /** * Gets the registryHive * Registry hive of the key that the recorded action was applied to. * * @return string|null The registryHive */ public function getRegistryHive() { if (array_key_exists("registryHive", $this->_propDict)) { return $this->_propDict["registryHive"]; } else { return null; } } /** * Sets the registryHive * Registry hive of the key that the recorded action was applied to. * * @param string $val The value of the registryHive * * @return RegistryValueEvidence */ public function setRegistryHive($val) { $this->_propDict["registryHive"] = $val; return $this; } /** * Gets the registryKey * Registry key that the recorded action was applied to. * * @return string|null The registryKey */ public function getRegistryKey() { if (array_key_exists("registryKey", $this->_propDict)) { return $this->_propDict["registryKey"]; } else { return null; } } /** * Sets the registryKey * Registry key that the recorded action was applied to. * * @param string $val The value of the registryKey * * @return RegistryValueEvidence */ public function setRegistryKey($val) { $this->_propDict["registryKey"] = $val; return $this; } /** * Gets the registryValue * Data of the registry value that the recorded action was applied to. * * @return string|null The registryValue */ public function getRegistryValue() { if (array_key_exists("registryValue", $this->_propDict)) { return $this->_propDict["registryValue"]; } else { return null; } } /** * Sets the registryValue * Data of the registry value that the recorded action was applied to. * * @param string $val The value of the registryValue * * @return RegistryValueEvidence */ public function setRegistryValue($val) { $this->_propDict["registryValue"] = $val; return $this; } /** * Gets the registryValueName * Name of the registry value that the recorded action was applied to. * * @return string|null The registryValueName */ public function getRegistryValueName() { if (array_key_exists("registryValueName", $this->_propDict)) { return $this->_propDict["registryValueName"]; } else { return null; } } /** * Sets the registryValueName * Name of the registry value that the recorded action was applied to. * * @param string $val The value of the registryValueName * * @return RegistryValueEvidence */ public function setRegistryValueName($val) { $this->_propDict["registryValueName"] = $val; return $this; } /** * Gets the registryValueType * Data type, such as binary or string, of the registry value that the recorded action was applied to. * * @return string|null The registryValueType */ public function getRegistryValueType() { if (array_key_exists("registryValueType", $this->_propDict)) { return $this->_propDict["registryValueType"]; } else { return null; } } /** * Sets the registryValueType * Data type, such as binary or string, of the registry value that the recorded action was applied to. * * @param string $val The value of the registryValueType * * @return RegistryValueEvidence */ public function setRegistryValueType($val) { $this->_propDict["registryValueType"] = $val; return $this; } }