Spaces:
Build error
Build error
Validify-testbot-1
/
botbuilder-python
/libraries
/botbuilder-dialogs
/botbuilder
/dialogs
/dialog_events.py
| # Copyright (c) Microsoft Corporation. All rights reserved. | |
| # Licensed under the MIT License. | |
| from enum import Enum | |
| class DialogEvents(str, Enum): | |
| begin_dialog = "beginDialog" | |
| reprompt_dialog = "repromptDialog" | |
| cancel_dialog = "cancelDialog" | |
| activity_received = "activityReceived" | |
| version_changed = "versionChanged" | |
| error = "error" | |
| custom = "custom" | |