JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3RbrhttpStatus = $httpStatus; $this->httpBody = $httpBody; $this->jsonBody = $jsonBody; $this->httpHeaders = $httpHeaders; $this->errorMessage = isset($jsonBody["message"]) ? $jsonBody["message"]: null; $this->errors = isset($jsonBody["errors"]) ? $jsonBody["errors"]: null; } public function getHttpStatus() { return $this->httpStatus; } public function getHttpBody() { return $this->httpBody; } public function getJsonBody() { return $this->jsonBody; } public function getHttpHeaders() { return $this->httpHeaders; } public function getErrorMessage() { return $this->errorMessage; } public function getErrors() { return $this->errors; } public function hasErrors() { return !empty($this->errors); } }