| 1 | class WebhookResponse: |
| 2 | def __init__( |
| 3 | self, |
| 4 | *, |
| 5 | url: str, |
| 6 | status_code: int, |
| 7 | body: str, |
| 8 | headers: dict, |
| 9 | ): |
| 10 | self.api_url = url |
| 11 | self.status_code = status_code |
| 12 | self.body = body |
| 13 | self.headers = headers |
no outgoing calls
no test coverage detected