declare class ContextMenuCommandBuilder
A builder that creates API-compatible JSON data for context menu commands.
readonlyoptionalexternalInteractionContextType[] contexts? :
The contexts for this command.
readonlyexternalPermissions | null | undefined default_member_permissions :
The set of permissions represented as a bit set for the command.
Use setDefaultMemberPermissions or setDMPermission instead.
Whether this command is enabled by default when the application is added to a guild.
Use contexts instead.
Indicates whether the command is available in direct messages with the application.
readonlyoptionalexternalApplicationIntegrationType[] integration_types? :
The integration types for this command.
readonlyoptionalexternalLocalizationMap name_localizations? :
The name localizations of this command.
readonlyexternalstring name :
The name of this command.
readonlyexternalContextMenuCommandType type :
The type of this command.
external setContexts...contexts: RestOrArray<InteractionContextType>) : this (
Sets the contexts of this command.
external setDefaultMemberPermissionspermissions: Permissions | bigint | number | null | undefined) : this (
Sets the default permissions a member should have in order to run this command.
See also: https://discord.com/developers/docs/interactions/application-commands#permissions
deprecatedexternal setDefaultPermissionvalue: boolean) : this (
Use setDefaultMemberPermissions or setDMPermission instead.
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
Use setContexts instead.
Sets if the command is available in direct messages with the application.
See also: https://discord.com/developers/docs/interactions/application-commands#permissions
external setIntegrationTypes...integrationTypes: RestOrArray<ApplicationIntegrationType>) : this (
Sets integration types of this command.
external setNamename: string) : this (
Sets the name of this command.
external setNameLocalizationlocale: LocaleString) : this (
Sets a name localization for this command.
external setNameLocalizationslocalizedNames: LocalizationMap | null) : this (
Sets the name localizations for this command.
external setTypetype: ContextMenuCommandType) : this (
Sets the type of this command.
external toJSONRESTPostAPIContextMenuApplicationCommandsJSONBody () :
Serializes this builder to API-compatible JSON data.