(self)
| 556 | return content.decode() |
| 557 | |
| 558 | async def json(self) -> Any: |
| 559 | content = await self.text() |
| 560 | return json.loads(content) |
| 561 | |
| 562 | async def security_details(self) -> Optional[SecurityDetails]: |
| 563 | return self._initializer.get("securityDetails") or None |