(cursor: Optional[str])
| 624 | def list(self) -> AutoPager[APIKeyView]: |
| 625 | # No cursor param: single page by contract (see webhooks list). |
| 626 | async def fetch(cursor: Optional[str]) -> Page: |
| 627 | resp = await self._c._read(lambda h: self._api.list_api_keys(_headers=h)) |
| 628 | return _page(resp.items, None) |
| 629 | |
| 630 | return AutoPager(fetch) |
| 631 |
nothing calls this directly
no test coverage detected