_propDict)) { return $this->_propDict["description"]; } else { return null; } } /** * Sets the description * Description. * * @param string $val The value of the description * * @return OmaSetting */ public function setDescription($val) { $this->_propDict["description"] = $val; return $this; } /** * Gets the displayName * Display Name. * * @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. * * @param string $val The value of the displayName * * @return OmaSetting */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } /** * Gets the omaUri * OMA. * * @return string|null The omaUri */ public function getOmaUri() { if (array_key_exists("omaUri", $this->_propDict)) { return $this->_propDict["omaUri"]; } else { return null; } } /** * Sets the omaUri * OMA. * * @param string $val The value of the omaUri * * @return OmaSetting */ public function setOmaUri($val) { $this->_propDict["omaUri"] = $val; return $this; } }