_propDict)) { return $this->_propDict["description"]; } else { return null; } } /** * Sets the description * Optional description for the device category. * * @param string $val The description * * @return DeviceCategory */ public function setDescription($val) { $this->_propDict["description"] = $val; return $this; } /** * Gets the displayName * Display name for the device category. * * @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 * Display name for the device category. * * @param string $val The displayName * * @return DeviceCategory */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } /** * Gets the roleScopeTagIds * Optional role scope tags for the device category. * * @return string|null The roleScopeTagIds */ public function getRoleScopeTagIds() { if (array_key_exists("roleScopeTagIds", $this->_propDict)) { return $this->_propDict["roleScopeTagIds"]; } else { return null; } } /** * Sets the roleScopeTagIds * Optional role scope tags for the device category. * * @param string $val The roleScopeTagIds * * @return DeviceCategory */ public function setRoleScopeTagIds($val) { $this->_propDict["roleScopeTagIds"] = $val; return $this; } }