(self, data: typing.Mapping)
| 21 | self.config = config |
| 22 | |
| 23 | def _identify_user(self, data: typing.Mapping) -> None: # type: ignore[type-arg] |
| 24 | response = call_integration_webhook(self.config, data) |
| 25 | if response: |
| 26 | logger.debug( |
| 27 | "Sent event to Webhook. Response code was: %s" % response.status_code |
| 28 | ) |
| 29 | |
| 30 | def generate_user_data( |
| 31 | self, |
nothing calls this directly
no test coverage detected