statusCode = $statusCode; $this->headers = $headers; $this->rawBody = $rawBody; } /** * Get status code * @return int Status code */ public function getStatusCode() { return $this->statusCode; } /** * Get headers * @return array Map of headers */ public function getHeaders() { return $this->headers; } /** * Get raw response body * @return string Raw body */ public function getRawBody() { return $this->rawBody; } }