Read and decode the JSON response content.
(self)
| 437 | return self.http_response.text |
| 438 | |
| 439 | async def json(self) -> object: |
| 440 | """Read and decode the JSON response content.""" |
| 441 | await self.read() |
| 442 | return self.http_response.json() |
| 443 | |
| 444 | async def close(self) -> None: |
| 445 | """Close the response and release the connection. |