message = $message; } /** * Get the response message. * * @return string|null */ public function message() { return $this->message; } /** * Get the string representation of the message. * * @return string */ public function __toString() { return $this->message(); } }