ApplicationFlags
EnumOn this page
discord.ApplicationFlags lists the named constants for this enumeration. Prefer these names over hardcoded literals.
Values
discord.ApplicationFlags.ApplicationAutoModerationRuleCreateBadge1 << 6Application Auto Moderation Rule Create Badge. Use the symbolic name in bot code rather than the raw value.
discord.ApplicationFlags.GatewayPresence1 << 12Gateway Presence. Use the symbolic name in bot code rather than the raw value.
discord.ApplicationFlags.GatewayPresenceLimited1 << 13Gateway Presence Limited. Use the symbolic name in bot code rather than the raw value.
discord.ApplicationFlags.GatewayGuildMembers1 << 14Gateway Guild Members. Use the symbolic name in bot code rather than the raw value.
discord.ApplicationFlags.GatewayGuildMembersLimited1 << 15Gateway Guild Members Limited. Use the symbolic name in bot code rather than the raw value.
discord.ApplicationFlags.VerificationPendingGuildLimit1 << 16Verification Pending Guild Limit. Use the symbolic name in bot code rather than the raw value.
discord.ApplicationFlags.Embedded1 << 17Embedded. Use the symbolic name in bot code rather than the raw value.
discord.ApplicationFlags.GatewayMessageContent1 << 18Gateway Message Content. Use the symbolic name in bot code rather than the raw value.
discord.ApplicationFlags.GatewayMessageContentLimited1 << 19Gateway Message Content Limited. Use the symbolic name in bot code rather than the raw value.
discord.ApplicationFlags.ApplicationCommandBadge1 << 23Application Command Badge. Use the symbolic name in bot code rather than the raw value.
Usage
Read members as discord.ApplicationFlags.Name. Do not hard-code numeric literals when a symbolic name exists.
Example
local discord = require("discord")
print(discord.ApplicationFlags.ApplicationAutoModerationRuleCreateBadge)