We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd900d9 commit b030d65Copy full SHA for b030d65
interactions/models/discord/enums.py
@@ -399,6 +399,7 @@ class MessageType(CursedIntEnum):
399
GUILD_INCIDENT_REPORT_RAID = 38
400
GUILD_INCIDENT_REPORT_FALSE_ALARM = 39
401
PURCHASE_NOTIFICATION = 44
402
+ POLL_RESULT = 46
403
404
@classmethod
405
def deletable(cls) -> Tuple["MessageType", ...]:
@@ -434,6 +435,7 @@ def deletable(cls) -> Tuple["MessageType", ...]:
434
435
cls.GUILD_INCIDENT_REPORT_RAID,
436
cls.GUILD_INCIDENT_REPORT_FALSE_ALARM,
437
cls.PURCHASE_NOTIFICATION,
438
+ cls.POLL_RESULT,
439
)
440
441
0 commit comments