Optional
Readonly
contextsThe contexts for this command.
Readonly
default_The set of permissions represented as a bit set for the command.
Readonly
default_Whether this command is enabled by default when the application is added to a guild.
Use setDefaultMemberPermissions or setDMPermission instead.
Readonly
descriptionThe description of this command.
Optional
Readonly
description_The description localizations of this command.
Readonly
dm_Indicates whether the command is available in direct messages with the application.
By default, commands are visible. This property is only for global commands.
Use contexts instead.
Optional
Readonly
integration_The integration types for this command.
Readonly
nameThe name of this command.
Optional
Readonly
name_The name localizations of this command.
Readonly
nsfwWhether this command is NSFW.
Readonly
optionsThe options of this command.
Adds an attachment option.
A function that returns an option builder or an already built builder
Adds a boolean option.
A function that returns an option builder or an already built builder
Adds a channel option.
A function that returns an option builder or an already built builder
Adds an integer option.
A function that returns an option builder or an already built builder
Adds a mentionable option.
A function that returns an option builder or an already built builder
Adds a number option.
A function that returns an option builder or an already built builder
Adds a role option.
A function that returns an option builder or an already built builder
Adds a string option.
A function that returns an option builder or an already built builder
Adds a new subcommand to this command.
A function that returns a subcommand builder or an already built builder
Adds a new subcommand group to this command.
A function that returns a subcommand group builder or an already built builder
Adds a user option.
A function that returns an option builder or an already built builder
Sets the contexts of this command.
Rest
...contexts: RestOrArray<InteractionContextType>The contexts
Sets if the command is available in direct messages with the application.
Whether the command should be enabled in direct messages
By default, commands are visible. This method is only for global commands.
https://discord.com/developers/docs/interactions/application-commands#permissions
Use setContexts instead.
Sets the default permissions a member should have in order to run the command.
The permissions bit field to set
You can set this to '0'
to disable the command by default.
https://discord.com/developers/docs/interactions/application-commands#permissions
Sets whether the command is enabled by default when the application is added to a guild.
Whether or not to enable this command by default
If set to false
, you will have to later PUT
the permissions for this command.
https://discord.com/developers/docs/interactions/application-commands#permissions
Use setDefaultMemberPermissions or setDMPermission instead.
Sets the description of this command.
The description to use
Sets a description localization for this command.
The locale to set
The localized description for the given locale
Sets the description localizations for this command.
The object of localized descriptions to set
Sets the integration types of this command.
Rest
...integrationTypes: RestOrArray<ApplicationIntegrationType>The integration types
Sets whether this command is NSFW.
Optional
nsfw: booleanWhether this command is NSFW
Sets the name of this command.
The name to use
Sets a name localization for this command.
The locale to set
The localized name for the given locale
Sets the name localizations for this command.
The object of localized names to set
Serializes this builder to API-compatible JSON data.
This method runs validations on the data before serializing it. As such, it may throw an error if the data is invalid.
Generated using TypeDoc
A builder that creates API-compatible JSON data for slash commands.