EntryPointCommandHandlerType
EnumOn this page
discord.EntryPointCommandHandlerType lists the named constants for this enumeration. Prefer these names over hardcoded literals.
Values
discord.EntryPointCommandHandlerType.AppHandler1App Handler. Use the symbolic name in bot code rather than the raw value.
discord.EntryPointCommandHandlerType.DiscordLaunchActivity2Discord Launch Activity. Use the symbolic name in bot code rather than the raw value.
Usage
Read members as discord.EntryPointCommandHandlerType.Name. Do not hard-code numeric literals when a symbolic name exists.
Example
local discord = require("discord")
print(discord.EntryPointCommandHandlerType.AppHandler)