Skip to main content
Module

x/biscuit/mod.ts>ApplicationCommandOption

A Discord library that is easy to use but reliable on its core 🥠
Latest
interface ApplicationCommandOption
import { type ApplicationCommandOption } from "https://deno.land/x/biscuit@0.2.4/mod.ts";

Properties

Value of Application Command Option Type

name: string

1-32 character name matching lowercase ^[\w-]{1,32}$

optional
nameLocalizations: Localization

Localization object for the name field. Values follow the same restrictions as name

description: string

1-100 character description

optional
descriptionLocalizations: Localization

Localization object for the description field. Values follow the same restrictions as description

optional
required: boolean

If the parameter is required or optional--default false

Choices for string and int types for the user to pick from

optional
options: ApplicationCommandOption[]

If the option is a subcommand or subcommand group type, this nested options will be the parameters

optional
autocomplete: boolean

if autocomplete interactions are enabled for this String, Integer, or Number type option

optional
channelTypes: ChannelTypes[]

If the option is a channel type, the channels shown will be restricted to these types

optional
minValue: number

Minimum number desired.

optional
maxValue: number

Maximum number desired.