DiscordLua
discorddiscord
v1.2.4
Install

GuildDefaultMessageNotifications

Enum
On this page

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

Values

discord.GuildDefaultMessageNotifications.AllMessages
0
All Messages. Use the symbolic name in bot code rather than the raw value.
discord.GuildDefaultMessageNotifications.OnlyMentions
1
Only Mentions. Use the symbolic name in bot code rather than the raw value.

Usage

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

Example

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