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
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- 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
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
- 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
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- val extra: Map[String, String]
Extra info to associate with the command.
Extra info to associate with the command.
- Definition Classes
- SlashCommandBuilder → CommandBuilder
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- 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 hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def named(name: String, description: String): NamedSlashCommandBuilder[Interaction, A]
Sets the name and description of the created slash command.
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- def paramList: Option[ParamList[A]]
The parameter list of this command.
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- 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
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- 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