_propDict)) { return $this->_propDict["name"]; } else { return null; } } /** * Sets the name * Name of the setting (as defined by the directorySettingTemplate). * * @param string $val The value of the name * * @return SettingValue */ public function setName($val) { $this->_propDict["name"] = $val; return $this; } /** * Gets the value * Value of the setting. * * @return string|null The value */ public function getValue() { if (array_key_exists("value", $this->_propDict)) { return $this->_propDict["value"]; } else { return null; } } /** * Sets the value * Value of the setting. * * @param string $val The value of the value * * @return SettingValue */ public function setValue($val) { $this->_propDict["value"] = $val; return $this; } }