DiscordLua
discorddiscord
v1.2.4
Install

GuildPremiumTier

Enum
On this page

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

Values

discord.GuildPremiumTier.None
0
None. Use the symbolic name in bot code rather than the raw value.
discord.GuildPremiumTier.Tier1
1
Tier1. Use the symbolic name in bot code rather than the raw value.
discord.GuildPremiumTier.Tier2
2
Tier2. Use the symbolic name in bot code rather than the raw value.
discord.GuildPremiumTier.Tier3
3
Tier3. Use the symbolic name in bot code rather than the raw value.

Usage

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

Example

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