DiscordLua
discorddiscord
v1.2.4
Install

GuildWidgetStyle

Enum
On this page

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

Values

discord.GuildWidgetStyle.Shield
shield
Shield. Use the symbolic name in bot code rather than the raw value.
discord.GuildWidgetStyle.Banner1
banner1
Banner1. Use the symbolic name in bot code rather than the raw value.
discord.GuildWidgetStyle.Banner2
banner2
Banner2. Use the symbolic name in bot code rather than the raw value.
discord.GuildWidgetStyle.Banner3
banner3
Banner3. Use the symbolic name in bot code rather than the raw value.
discord.GuildWidgetStyle.Banner4
banner4
Banner4. Use the symbolic name in bot code rather than the raw value.

Usage

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

Example

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