ComponentType
EnumOn this page
discord.ComponentType lists the named constants for this enumeration. Prefer these names over hardcoded literals.
Values
discord.ComponentType.ActionRow1Action Row. Use the symbolic name in bot code rather than the raw value.
discord.ComponentType.Button2Button. Use the symbolic name in bot code rather than the raw value.
discord.ComponentType.StringSelect3String Select. Use the symbolic name in bot code rather than the raw value.
discord.ComponentType.TextInput4Text Input. Use the symbolic name in bot code rather than the raw value.
discord.ComponentType.UserSelect5User Select. Use the symbolic name in bot code rather than the raw value.
discord.ComponentType.RoleSelect6Role Select. Use the symbolic name in bot code rather than the raw value.
discord.ComponentType.MentionableSelect7Mentionable Select. Use the symbolic name in bot code rather than the raw value.
discord.ComponentType.ChannelSelect8Channel Select. Use the symbolic name in bot code rather than the raw value.
discord.ComponentType.Section9Section. Use the symbolic name in bot code rather than the raw value.
discord.ComponentType.TextDisplay10Text Display. Use the symbolic name in bot code rather than the raw value.
discord.ComponentType.Thumbnail11Thumbnail. Use the symbolic name in bot code rather than the raw value.
discord.ComponentType.MediaGallery12Media Gallery. Use the symbolic name in bot code rather than the raw value.
discord.ComponentType.File13File. Use the symbolic name in bot code rather than the raw value.
discord.ComponentType.Separator14Separator. Use the symbolic name in bot code rather than the raw value.
discord.ComponentType.ContentInventoryEntry16Content Inventory Entry. Use the symbolic name in bot code rather than the raw value.
discord.ComponentType.Container17Container. Use the symbolic name in bot code rather than the raw value.
discord.ComponentType.Label18Label. Use the symbolic name in bot code rather than the raw value.
discord.ComponentType.FileUpload19File Upload. Use the symbolic name in bot code rather than the raw value.
discord.ComponentType.RadioGroup21Radio Group. Use the symbolic name in bot code rather than the raw value.
discord.ComponentType.CheckboxGroup22Checkbox Group. Use the symbolic name in bot code rather than the raw value.
discord.ComponentType.Checkbox23Checkbox. Use the symbolic name in bot code rather than the raw value.
Usage
Read members as discord.ComponentType.Name. Do not hard-code numeric literals when a symbolic name exists.
Example
local discord = require("discord")
print(discord.ComponentType.ActionRow)