add system act type enum

This commit is contained in:
s444510 2023-05-04 17:20:11 +02:00
parent 283f26a164
commit 18858dddc8
1 changed files with 20 additions and 0 deletions

20
system-act-type.py Normal file
View File

@ -0,0 +1,20 @@
from enum import Enum, unique
@unique
class SystemActType(Enum):
affirm = 0,
bye = 1,
confirm_domain = 2,
negate = 3,
repeat = 4,
reqmore = 5,
welcomemsg = 6,
canthelp = 7,
canthelp_missing_slot_value = 8,
expl_conf = 9,
impl_conf = 10,
inform = 11,
offer = 12,
request = 13,
select = 14