interface SlashCommandSubcommandsOnlyBuilder extends SharedNameAndDescription, SharedSlashCommandSubcommands<SlashCommandSubcommandsOnlyBuilder>, SharedSlashCommandAn interface specifically for slash command subcommands.
readonlyoptionalcontexts? : InteractionContextType[] 
Inherited from: SharedSlashCommand
readonlydefault_member_permissions : Permissions | null | undefined 
Inherited from: SharedSlashCommand
Use setDefaultMemberPermissions or setDMPermission instead.
Inherited from: SharedSlashCommand
readonlyoptionaldescription_localizations? : LocalizationMap 
The description localizations of this command.
Inherited from: SharedNameAndDescription
readonlydescription : string 
The description of this command.
Inherited from: SharedNameAndDescription
Use contexts instead.
Inherited from: SharedSlashCommand
readonlyoptionalintegration_types? : ApplicationIntegrationType[] 
Inherited from: SharedSlashCommand
readonlyoptionalname_localizations? : LocalizationMap 
The name localizations of this command.
Inherited from: SharedNameAndDescription
Inherited from: SharedSlashCommand
readonlyoptions : ToAPIApplicationCommandOptions[] 
Inherited from: SharedSlashCommand
 addSubcommand(input: SlashCommandSubcommandBuilder | ((subcommandGroup: SlashCommandSubcommandBuilder) => SlashCommandSubcommandBuilder)) : TypeAfterAddingSubcommands
Adds a new subcommand to this command.
Inherited from: SharedSlashCommandSubcommands
 addSubcommandGroup(input: SlashCommandSubcommandGroupBuilder | ((subcommandGroup: SlashCommandSubcommandGroupBuilder) => SlashCommandSubcommandGroupBuilder)) : TypeAfterAddingSubcommands
Adds a new subcommand group to this command.
Inherited from: SharedSlashCommandSubcommands
 setContexts(...contexts: RestOrArray<InteractionContextType>) : this
Sets the contexts of this command.
Inherited from: SharedSlashCommand
 setDefaultMemberPermissions(permissions: Permissions | bigint | number | null | undefined) : this
Sets the default permissions a member should have in order to run the command.
Inherited from: SharedSlashCommand
See also: https://discord.com/developers/docs/interactions/application-commands#permissions
 deprecated setDefaultPermission(value: boolean) : this
Use setDefaultMemberPermissions or setDMPermission instead.
Sets whether the command is enabled by default when the application is added to a guild.
Inherited from: SharedSlashCommand
See also: https://discord.com/developers/docs/interactions/application-commands#permissions
 setDescription(description: string) : this
Sets the description of this command.
Inherited from: SharedNameAndDescription
 setDescriptionLocalization(locale: LocaleString) : this
Sets a description localization for this command.
Inherited from: SharedNameAndDescription
 setDescriptionLocalizations(localizedDescriptions: LocalizationMap | null) : this
Sets the description localizations for this command.
Inherited from: SharedNameAndDescription
Use setContexts instead.
Sets if the command is available in direct messages with the application.
Inherited from: SharedSlashCommand
See also: https://discord.com/developers/docs/interactions/application-commands#permissions
 setIntegrationTypes(...integrationTypes: RestOrArray<ApplicationIntegrationType>) : this
Sets the integration types of this command.
Inherited from: SharedSlashCommand
 setNameLocalization(locale: LocaleString) : this
Sets a name localization for this command.
Inherited from: SharedNameAndDescription
 setNameLocalizations(localizedNames: LocalizationMap | null) : this
Sets the name localizations for this command.
Inherited from: SharedNameAndDescription
Serializes this builder to API-compatible JSON data.
Inherited from: SharedSlashCommand