_propDict)) { return $this->_propDict["description"]; } else { return null; } } /** * Sets the description * The description to set for the directory role. Read-only. * * @param string $val The description * * @return DirectoryRoleTemplate */ public function setDescription($val) { $this->_propDict["description"] = $val; return $this; } /** * Gets the displayName * The display name to set for the directory role. Read-only. * * @return string|null The displayName */ public function getDisplayName() { if (array_key_exists("displayName", $this->_propDict)) { return $this->_propDict["displayName"]; } else { return null; } } /** * Sets the displayName * The display name to set for the directory role. Read-only. * * @param string $val The displayName * * @return DirectoryRoleTemplate */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } }