Skip to main content

ODSlashCommandUniversalOption interface

under construction

We are still working the API Reference! This page might be incomplete or doesn't contain all details!

Overview

A universal template for a slash command option.

Why universal? Both existing slash commands & unregistered templates can be converted to this type.

View Source

Properties


autocomplete type null|boolean

Is autocomplete enabled in this option?

View Source


channelTypes type readonly (discord-api-types.ChannelType[])

A list of allowed channel types for this option (only when type is channel)

View Source


choices array api.ODSlashCommandUniversalOptionChoice[]

Choices for this option (only when type is string)

View Source


description string string

The description of this option.

View Source


descriptionLocalizations type readonly (api.ODSlashCommandUniversalTranslation[])

All localized descriptions of this option.

View Source


maxLength type null|number

The maximum length required for this option (only when type is string)

View Source


maxValue type null|number

The maximum amount required for this option (only when type is number or integer)

View Source


minLength type null|number

The minimum length required for this option (only when type is string)

View Source


minValue type null|number

The minimum amount required for this option (only when type is number or integer)

View Source


name string string

The name of this option.

View Source


nameLocalizations type readonly (api.ODSlashCommandUniversalTranslation[])

All localized names of this option.

View Source


options type readonly (api.ODSlashCommandUniversalOption[])

A list of sub-options for this option (only when type is subCommand or subCommandGroup)

View Source


required boolean boolean

Is this option required?

View Source


type type discord-api-types.ApplicationCommandOptionType

The type of this option.

View Source