diff options
Diffstat (limited to 'discord/enums.py')
| -rw-r--r-- | discord/enums.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/discord/enums.py b/discord/enums.py index bf1a3115..0d7305ba 100644 --- a/discord/enums.py +++ b/discord/enums.py @@ -46,6 +46,7 @@ __all__ = ( 'ExpireBehaviour', 'ExpireBehavior', 'StickerType', + 'InviteTarget', 'VideoQualityMode', ) @@ -426,6 +427,11 @@ class StickerType(Enum): apng = 2 lottie = 3 +class InviteTarget(Enum): + unknown = 0 + stream = 1 + embedded_application = 2 + class InteractionType(Enum): ping = 1 application_command = 2 |