/home/desid573/public_html/gcdriver/square/lib
NameSizeModeActions
Api/-0755rm
Model/-0755rm
ApiClient.php122530644editdlrm
ApiException.php23620644editdlrm
Configuration.php113910644editdlrm
ObjectSerializer.php89030644editdlrm
Edit: /home/desid573/public_html/gcdriver/square/lib/ApiException.php (2362B)
responseHeaders = $responseHeaders; $this->responseBody = $responseBody; } /** * Gets the HTTP response header * * @return string HTTP response header */ public function getResponseHeaders() { return $this->responseHeaders; } /** * Gets the HTTP body of the server response either as Json or string * * @return mixed HTTP body of the server response either as Json or string */ public function getResponseBody() { return $this->responseBody; } /** * Sets the deseralized response object (during deserialization) * @param mixed $obj Deserialized response object * @return void */ public function setResponseObject($obj) { $this->responseObject = $obj; } /** * Gets the deseralized response object (during deserialization) * * @return mixed the deserialized response object */ public function getResponseObject() { return $this->responseObject; } }