Read and decode the JSON response content.
(self)
| 349 | return self.http_response.text |
| 350 | |
| 351 | def json(self) -> object: |
| 352 | """Read and decode the JSON response content.""" |
| 353 | self.read() |
| 354 | return self.http_response.json() |
| 355 | |
| 356 | def close(self) -> None: |
| 357 | """Close the response and release the connection. |