class SlashCommandBuilder[Interaction[_], A] extends CommandBuilder[Interaction, A]
- Alphabetic
- By Inheritance
- SlashCommandBuilder
- CommandBuilder
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new SlashCommandBuilder(defaultPermission: Boolean, transformer: DataInteractionTransformer[CommandInteraction, Interaction], implParamList: Either[=:=[NotUsed, A], ParamList[A]], extra: Map[String, String])
Value Members
- def andThen[To2[_]](nextTransformer: DataInteractionTransformer[Interaction, To2]): SlashCommandBuilder[To2, A]
Use a new transformer on the current transformer.
Use a new transformer on the current transformer.
- Definition Classes
- SlashCommandBuilder → CommandBuilder
- def command(name: String, description: String)(handle: (Interaction[A]) => InteractionResponse): SlashCommand[Interaction, A]
Create a slash command.
Create a slash command.
- name
Name of the slash command.
- description
Description of the slash command.
- handle
A handler for the slash command.
- def defaultPermission(permission: Boolean): SlashCommandBuilder[Interaction, A]
- Definition Classes
- SlashCommandBuilder → CommandBuilder
- val defaultPermission: Boolean
- Definition Classes
- SlashCommandBuilder → CommandBuilder
- val extra: Map[String, String]
Extra info to associate with the command.
Extra info to associate with the command.
- Definition Classes
- SlashCommandBuilder → CommandBuilder
- def group(name: String, description: String)(subcommands: SlashCommandOrGroup*): SlashCommandGroup
Create a slash command group.
Create a slash command group.
- name
Name of the group
- description
Description of the group.
- subcommands
Subcommands of the group.
- def named(name: String, description: String): NamedSlashCommandBuilder[Interaction, A]
Sets the name and description of the created slash command.
- def paramList: Option[ParamList[A]]
The parameter list of this command.
- val transformer: DataInteractionTransformer[CommandInteraction, Interaction]
A transformer to do base processing of the interaction before handling it.
A transformer to do base processing of the interaction before handling it.
- Definition Classes
- SlashCommandBuilder → CommandBuilder
- def withExtra(extra: Map[String, String]): SlashCommandBuilder[Interaction, A]
Sets the extra info associated with the command.
Sets the extra info associated with the command.
- Definition Classes
- SlashCommandBuilder → CommandBuilder
- def withNoParams: SlashCommandBuilder[Interaction, NotUsed]
Removes the parameters of the command builder.
- def withParams[NewA](paramList: ParamList[NewA]): SlashCommandBuilder[Interaction, NewA]
Sets the parameters to use for this command.
- def withTransformer[NewTo[_]](transformer: DataInteractionTransformer[CommandInteraction, NewTo]): SlashCommandBuilder[NewTo, A]
Sets the transformer to process the interaction first.
Sets the transformer to process the interaction first.
- Definition Classes
- SlashCommandBuilder → CommandBuilder