from enum import auto, StrEnum class EventType(StrEnum): INCOMING_CONTENT = auto() INCOMING_SLACK_MESSAGE = auto() OUTGOING_SLACK_RESPONSE = auto()