Read and decode the JSON response content.
(self)
| 480 | return self.http_response.text |
| 481 | |
| 482 | async def json(self) -> object: |
| 483 | """Read and decode the JSON response content.""" |
| 484 | await self.read() |
| 485 | return self.http_response.json() |
| 486 | |
| 487 | async def close(self) -> None: |
| 488 | """Close the response and release the connection. |