setODataType("#microsoft.graph.singleUser"); } /** * Gets the description * The name of the user in Microsoft Entra ID. Read only. * * @return string|null The description */ public function getDescription() { if (array_key_exists("description", $this->_propDict)) { return $this->_propDict["description"]; } else { return null; } } /** * Sets the description * The name of the user in Microsoft Entra ID. Read only. * * @param string $val The value of the description * * @return SingleUser */ public function setDescription($val) { $this->_propDict["description"] = $val; return $this; } /** * Gets the userId * The ID of the user in Microsoft Entra ID. * * @return string|null The userId */ public function getUserId() { if (array_key_exists("userId", $this->_propDict)) { return $this->_propDict["userId"]; } else { return null; } } /** * Sets the userId * The ID of the user in Microsoft Entra ID. * * @param string $val The value of the userId * * @return SingleUser */ public function setUserId($val) { $this->_propDict["userId"] = $val; return $this; } }