Add reaction type to raw events and users iterator

This commit is contained in:
Andrin
2024-05-18 20:33:26 +02:00
committed by GitHub
parent b5ada0a662
commit f77ba711ba
7 changed files with 53 additions and 4 deletions

View File

@ -829,6 +829,11 @@ class InviteType(Enum):
friend = 2
class ReactionType(Enum):
normal = 0
burst = 1
def create_unknown_value(cls: Type[E], val: Any) -> E:
value_cls = cls._enum_value_cls_ # type: ignore # This is narrowed below
name = f'unknown_{val}'