_propDict)) { return $this->_propDict["error"]; } else { return null; } } /** * Sets the error * * @param string $val The error * * @return WorkbookFunctionResult */ public function setError($val) { $this->_propDict["error"] = $val; return $this; } /** * Gets the value * * @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 * * @param string $val The value * * @return WorkbookFunctionResult */ public function setValue($val) { $this->_propDict["value"] = $val; return $this; } }