ApplicationWebhookEventType
EnumOn this page
discord.ApplicationWebhookEventType lists the named constants for this enumeration. Prefer these names over hardcoded literals.
Values
discord.ApplicationWebhookEventType.ApplicationAuthorizedAPPLICATION_AUTHORIZEDApplication Authorized. Use the symbolic name in bot code rather than the raw value.
discord.ApplicationWebhookEventType.ApplicationDeauthorizedAPPLICATION_DEAUTHORIZEDApplication Deauthorized. Use the symbolic name in bot code rather than the raw value.
discord.ApplicationWebhookEventType.EntitlementCreateENTITLEMENT_CREATEEntitlement Create. Use the symbolic name in bot code rather than the raw value.
discord.ApplicationWebhookEventType.EntitlementUpdateENTITLEMENT_UPDATEEntitlement Update. Use the symbolic name in bot code rather than the raw value.
discord.ApplicationWebhookEventType.EntitlementDeleteENTITLEMENT_DELETEEntitlement Delete. Use the symbolic name in bot code rather than the raw value.
discord.ApplicationWebhookEventType.QuestUserEnrollmentQUEST_USER_ENROLLMENTQuest User Enrollment. Use the symbolic name in bot code rather than the raw value.
Usage
Read members as discord.ApplicationWebhookEventType.Name. Do not hard-code numeric literals when a symbolic name exists.
Example
local discord = require("discord")
print(discord.ApplicationWebhookEventType.ApplicationAuthorized)