SlashCommandOptionsOnlyBuilder

interface SlashCommandOptionsOnlyBuilder extends SharedNameAndDescription, SharedSlashCommandOptions<SlashCommandOptionsOnlyBuilder>, SharedSlashCommand
interface SlashCommandOptionsOnlyBuilder extends SharedNameAndDescription, SharedSlashCommandOptions<SlashCommandOptionsOnlyBuilder>, SharedSlashCommand
An interface specifically for slash command options.
Readonly
Inherited from SharedSlashCommand
Readonly
default_member_permissions:Permissions | null | undefined
Inherited from SharedSlashCommand
DeprecatedReadonly
default_permission:boolean | undefined
Inherited from SharedSlashCommand
Readonly
description_localizations?:LocalizationMap
The description localizations of this command.
Inherited from SharedNameAndDescription
Readonly
description:string
The description of this command.
Inherited from SharedNameAndDescription
DeprecatedReadonly
dm_permission:boolean | undefined
Use contexts instead.
Deprecated
Inherited from SharedSlashCommand
Readonly
integration_types?:ApplicationIntegrationType[]
Inherited from SharedSlashCommand
Readonly
name_localizations?:LocalizationMap
The name localizations of this command.
Inherited from SharedNameAndDescription
Readonly
name:string
The name of this command.
Inherited from SharedNameAndDescription
Readonly
Inherited from SharedSlashCommand
Inherited from SharedSlashCommand
addAttachmentOption(input):TypeAfterAddingOptions
Adds an attachment option.
NameTypeOptionalDescription
inputSlashCommandAttachmentOption | ((builder: SlashCommandAttachmentOption) => SlashCommandAttachmentOption)No
A function that returns an option builder or an already built builder
Inherited from SharedSlashCommandOptions
addBooleanOption(input):TypeAfterAddingOptions
Adds a boolean option.
NameTypeOptionalDescription
inputSlashCommandBooleanOption | ((builder: SlashCommandBooleanOption) => SlashCommandBooleanOption)No
A function that returns an option builder or an already built builder
Inherited from SharedSlashCommandOptions
addChannelOption(input):TypeAfterAddingOptions
Adds a channel option.
NameTypeOptionalDescription
inputSlashCommandChannelOption | ((builder: SlashCommandChannelOption) => SlashCommandChannelOption)No
A function that returns an option builder or an already built builder
Inherited from SharedSlashCommandOptions
addIntegerOption(input):TypeAfterAddingOptions
Adds an integer option.
NameTypeOptionalDescription
inputSlashCommandIntegerOption | ((builder: SlashCommandIntegerOption) => SlashCommandIntegerOption)No
A function that returns an option builder or an already built builder
Inherited from SharedSlashCommandOptions
addMentionableOption(input):TypeAfterAddingOptions
Adds a mentionable option.
NameTypeOptionalDescription
inputSlashCommandMentionableOption | ((builder: SlashCommandMentionableOption) => SlashCommandMentionableOption)No
A function that returns an option builder or an already built builder
Inherited from SharedSlashCommandOptions
addNumberOption(input):TypeAfterAddingOptions
Adds a number option.
NameTypeOptionalDescription
inputSlashCommandNumberOption | ((builder: SlashCommandNumberOption) => SlashCommandNumberOption)No
A function that returns an option builder or an already built builder
Inherited from SharedSlashCommandOptions
addRoleOption(input):TypeAfterAddingOptions
Adds a role option.
NameTypeOptionalDescription
inputSlashCommandRoleOption | ((builder: SlashCommandRoleOption) => SlashCommandRoleOption)No
A function that returns an option builder or an already built builder
Inherited from SharedSlashCommandOptions
addStringOption(input):TypeAfterAddingOptions
Adds a string option.
NameTypeOptionalDescription
inputSlashCommandStringOption | ((builder: SlashCommandStringOption) => SlashCommandStringOption)No
A function that returns an option builder or an already built builder
Inherited from SharedSlashCommandOptions
addUserOption(input):TypeAfterAddingOptions
Adds a user option.
NameTypeOptionalDescription
inputSlashCommandUserOption | ((builder: SlashCommandUserOption) => SlashCommandUserOption)No
A function that returns an option builder or an already built builder
Inherited from SharedSlashCommandOptions
setContexts(...contexts):this
Sets the contexts of this command.
NameTypeOptionalDescription
...contextsRestOrArray<InteractionContextType>No
The contexts
Inherited from SharedSlashCommand
setDefaultMemberPermissions(permissions):this
Sets the default permissions a member should have in order to run the command.
Remarks
You can set this to '0' to disable the command by default.
NameTypeOptionalDescription
permissionsPermissions | bigint | number | null | undefinedNo
The permissions bit field to set
Inherited from SharedSlashCommand
Deprecated
setDefaultPermission(value):this
Sets whether the command is enabled by default when the application is added to a guild.
Remarks
If set to false, you will have to later PUT the permissions for this command.
NameTypeOptionalDescription
valuebooleanNo
Whether or not to enable this command by default
Inherited from SharedSlashCommand
setDescription(description):this
Sets the description of this command.
NameTypeOptionalDescription
descriptionstringNo
The description to use
Inherited from SharedNameAndDescription
setDescriptionLocalization(locale, localizedDescription):this
Sets a description localization for this command.
NameTypeOptionalDescription
localeLocaleStringNo
The locale to set
localizedDescriptionstring | nullNo
The localized description for the given locale
Inherited from SharedNameAndDescription
setDescriptionLocalizations(localizedDescriptions):this
Sets the description localizations for this command.
NameTypeOptionalDescription
localizedDescriptionsLocalizationMap | nullNo
The object of localized descriptions to set
Inherited from SharedNameAndDescription
Deprecated
setDMPermission(enabled):this
Use setContexts instead.
Deprecated
Sets if the command is available in direct messages with the application.
Remarks
By default, commands are visible. This method is only for global commands.
NameTypeOptionalDescription
enabledboolean | null | undefinedNo
Whether the command should be enabled in direct messages
Inherited from SharedSlashCommand
setIntegrationTypes(...integrationTypes):this
Sets the integration types of this command.
NameTypeOptionalDescription
...integrationTypesRestOrArray<ApplicationIntegrationType>No
The integration types
Inherited from SharedSlashCommand
setName(name):this
Sets the name of this command.
NameTypeOptionalDescription
namestringNo
The name to use
Inherited from SharedNameAndDescription
setNameLocalization(locale, localizedName):this
Sets a name localization for this command.
NameTypeOptionalDescription
localeLocaleStringNo
The locale to set
localizedNamestring | nullNo
The localized name for the given locale
Inherited from SharedNameAndDescription
setNameLocalizations(localizedNames):this
Sets the name localizations for this command.
NameTypeOptionalDescription
localizedNamesLocalizationMap | nullNo
The object of localized names to set
Inherited from SharedNameAndDescription
setNSFW(nsfw?):this
Sets whether this command is NSFW.
NameTypeOptionalDescription
nsfwbooleanYes
Whether this command is NSFW
Inherited from SharedSlashCommand
Serializes this builder to API-compatible JSON data.
Remarks
This method runs validations on the data before serializing it. As such, it may throw an error if the data is invalid.
Inherited from SharedSlashCommand