_propDict)) { return $this->_propDict["code"]; } else { return null; } } /** * Sets the code * The error code. * * @param string $val The value of the code * * @return MailTipsError */ public function setCode($val) { $this->_propDict["code"] = $val; return $this; } /** * Gets the message * The error message. * * @return string|null The message */ public function getMessage() { if (array_key_exists("message", $this->_propDict)) { return $this->_propDict["message"]; } else { return null; } } /** * Sets the message * The error message. * * @param string $val The value of the message * * @return MailTipsError */ public function setMessage($val) { $this->_propDict["message"] = $val; return $this; } }