Read and decode the JSON response content.
(self)
| 456 | return self.http_response.text |
| 457 | |
| 458 | async def json(self) -> object: |
| 459 | """Read and decode the JSON response content.""" |
| 460 | await self.read() |
| 461 | return self.http_response.json() |
| 462 | |
| 463 | async def close(self) -> None: |
| 464 | """Close the response and release the connection. |