DiscordLua
discorddiscord
v1.2.4
Install

GuildMFALevel

Enum
On this page

discord.GuildMFALevel lists the named constants for this enumeration. Prefer these names over hardcoded literals.

Values

discord.GuildMFALevel.None
0
None. Use the symbolic name in bot code rather than the raw value.
discord.GuildMFALevel.Elevated
1
Elevated. Use the symbolic name in bot code rather than the raw value.

Usage

Read members as discord.GuildMFALevel.Name. Do not hard-code numeric literals when a symbolic name exists.

Example

lua
local discord = require("discord")
print(discord.GuildMFALevel.None)
Search Ctrl K Navigate Open Esc