_propDict)) { return $this->_propDict["message"]; } else { return null; } } /** * Sets the message * * @param string $val The value of the message * * @return Diagnostic */ public function setMessage($val) { $this->_propDict["message"] = $val; return $this; } /** * Gets the url * * @return string|null The url */ public function getUrl() { if (array_key_exists("url", $this->_propDict)) { return $this->_propDict["url"]; } else { return null; } } /** * Sets the url * * @param string $val The value of the url * * @return Diagnostic */ public function setUrl($val) { $this->_propDict["url"] = $val; return $this; } }