DiscordLua
discorddiscord
v1.2.4
Install

GuildNSFWLevel

Enum
On this page

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

Values

discord.GuildNSFWLevel.Default
0
Default. Use the symbolic name in bot code rather than the raw value.
discord.GuildNSFWLevel.Explicit
1
Explicit. Use the symbolic name in bot code rather than the raw value.
discord.GuildNSFWLevel.Safe
2
Safe. Use the symbolic name in bot code rather than the raw value.
discord.GuildNSFWLevel.AgeRestricted
3
Age Restricted. Use the symbolic name in bot code rather than the raw value.

Usage

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

Example

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