(_cursor: Optional[str])
| 547 | |
| 548 | def list(self) -> AutoPager[WebhookView]: |
| 549 | async def fetch(_cursor: Optional[str]) -> Page: |
| 550 | resp = await self._c._read(lambda h: self._api.list_webhooks(_headers=h)) |
| 551 | # No cursor param: drop next_cursor so the pager stops after one page. |
| 552 | # (Single-page at GA — see webhooks.deliveries.) |
| 553 | return _page(resp.items) |
| 554 | |
| 555 | return AutoPager(fetch) |
| 556 |
nothing calls this directly
no test coverage detected