DiscordLua
discorddiscord
v1.2.4
Install

InviteTargetType

Enum
On this page

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

Values

discord.InviteTargetType.Stream
1
Stream. Use the symbolic name in bot code rather than the raw value.
discord.InviteTargetType.EmbeddedApplication
2
Embedded Application. Use the symbolic name in bot code rather than the raw value.

Usage

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

Example

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