DiscordLua
discorddiscord
v1.2.4
Install

StickerType

Enum
On this page

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

Values

discord.StickerType.Standard
1
Standard. Use the symbolic name in bot code rather than the raw value.
discord.StickerType.Guild
2
Guild. Use the symbolic name in bot code rather than the raw value.

Usage

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

Example

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