DiscordLua
discorddiscord
v1.2.4
Install

StickerFormatType

Enum
On this page

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

Values

discord.StickerFormatType.PNG
1
PNG. Use the symbolic name in bot code rather than the raw value.
discord.StickerFormatType.APNG
2
APNG. Use the symbolic name in bot code rather than the raw value.
discord.StickerFormatType.Lottie
3
Lottie. Use the symbolic name in bot code rather than the raw value.
discord.StickerFormatType.GIF
4
GIF. Use the symbolic name in bot code rather than the raw value.

Usage

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

Example

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