(self, webhook_id: str, body: Optional[Body] = None)
| 579 | ) |
| 580 | |
| 581 | async def test(self, webhook_id: str, body: Optional[Body] = None) -> TestWebhookResponse: |
| 582 | req = _coerce(TestWebhookRequest, body) |
| 583 | return await self._c._write_unsafe( |
| 584 | lambda h: self._api.test_webhook(webhook_id, req, _headers=h) |
| 585 | ) |
| 586 | |
| 587 | def deliveries( |
| 588 | self, webhook_id: str, *, status: Optional[str] = None, limit: Optional[int] = None |
nothing calls this directly
no test coverage detected