responseHeaders = $responseHeaders; $this->responseBody = $responseBody; } /** * Get the HTTP response header * * @return string HTTP response header */ public function getResponseHeaders() { return $this->responseHeaders; } /** * Get the HTTP response body * * @return string HTTP response body */ public function getResponseBody() { return $this->responseBody; } /** * sets the deseralized response object (during deserialization) * @param mixed $obj */ public function setResponseObject($obj) { $this->responseObject = $obj; } public function getResponseObject() { return $this->responseObject; } }