ApplicationWebhookEventStatus
EnumOn this page
discord.ApplicationWebhookEventStatus lists the named constants for this enumeration. Prefer these names over hardcoded literals.
Values
discord.ApplicationWebhookEventStatus.Disabled1Disabled. Use the symbolic name in bot code rather than the raw value.
discord.ApplicationWebhookEventStatus.Enabled2Enabled. Use the symbolic name in bot code rather than the raw value.
discord.ApplicationWebhookEventStatus.DisabledByDiscord3Disabled By Discord. Use the symbolic name in bot code rather than the raw value.
Usage
Read members as discord.ApplicationWebhookEventStatus.Name. Do not hard-code numeric literals when a symbolic name exists.
Example
local discord = require("discord")
print(discord.ApplicationWebhookEventStatus.Disabled)