_propDict)) { return $this->_propDict["message"]; } else { return null; } } /** * Sets the message * Describes the error. * * @param string $val The value of the message * * @return FreeBusyError */ public function setMessage($val) { $this->_propDict["message"] = $val; return $this; } /** * Gets the responseCode * The response code from querying for the availability of the user, distribution list, or resource. * * @return string|null The responseCode */ public function getResponseCode() { if (array_key_exists("responseCode", $this->_propDict)) { return $this->_propDict["responseCode"]; } else { return null; } } /** * Sets the responseCode * The response code from querying for the availability of the user, distribution list, or resource. * * @param string $val The value of the responseCode * * @return FreeBusyError */ public function setResponseCode($val) { $this->_propDict["responseCode"] = $val; return $this; } }