Read and decode the JSON response content.
(self)
| 337 | return self.http_response.text |
| 338 | |
| 339 | def json(self) -> object: |
| 340 | """Read and decode the JSON response content.""" |
| 341 | self.read() |
| 342 | return self.http_response.json() |
| 343 | |
| 344 | def close(self) -> None: |
| 345 | """Close the response and release the connection. |