DiscordLua
discorddiscord
v1.2.4
Install

SKUType

Enum
On this page

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

Values

discord.SKUType.Durable
2
Durable. Use the symbolic name in bot code rather than the raw value.
discord.SKUType.Consumable
3
Consumable. Use the symbolic name in bot code rather than the raw value.
discord.SKUType.Subscription
5
Subscription. Use the symbolic name in bot code rather than the raw value.
discord.SKUType.SubscriptionGroup
6
Subscription Group. Use the symbolic name in bot code rather than the raw value.

Usage

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

Example

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