File size: 381 Bytes
0827183
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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"