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