class SharedSlashCommand

export declare class SharedSlashCommand

This mixin holds symbols that can be shared in slashcommands independent of options or subcommands.

readonlyoptional
contexts? : InteractionContextType[]

readonly
default_member_permissions : Permissions | null | undefined

deprecatedreadonly
default_permission : boolean | undefined

readonlyoptional
description_localizations? : LocalizationMap

readonly
description : string

deprecatedreadonly
dm_permission : boolean | undefined

readonlyoptional
integration_types? : ApplicationIntegrationType[]

readonlyoptional
name_localizations? : LocalizationMap

readonly
name : string

readonly
nsfw : boolean | undefined

readonly
options : ToAPIApplicationCommandOptions[]

setContexts() : this

Sets the contexts of this command.

setDefaultMemberPermissions(
permissions: Permissions | bigint | number | null | undefined
) : this

Sets the default permissions a member should have in order to run the command.

See also: https://discord.com/developers/docs/interactions/application-commands#permissions

deprecated
setDefaultPermission(
value: boolean
) : this

Sets whether the command is enabled by default when the application is added to a guild.

See also: https://discord.com/developers/docs/interactions/application-commands#permissions

deprecated
setDMPermission(
enabled: boolean | null | undefined
) : this

Sets if the command is available in direct messages with the application.

See also: https://discord.com/developers/docs/interactions/application-commands#permissions

setIntegrationTypes() : this

Sets the integration types of this command.

setNSFW(
nsfw?: boolean
) : this

Sets whether this command is NSFW.

Serializes this builder to API-compatible JSON data.