abstract class CommandBuilder[Interaction[_], Args] extends AnyRef

A builder of some sort of command.

Source
CommandBuilder.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CommandBuilder
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new CommandBuilder()

Abstract Value Members

  1. abstract def andThen[To2[_]](nextTransformer: DataInteractionTransformer[Interaction, To2]): CommandBuilder[To2, Args]

    Use a new transformer on the current transformer.

  2. abstract def defaultPermission(permission: Boolean): CommandBuilder[Interaction, Args]
  3. abstract def defaultPermission: Boolean
  4. abstract def extra: Map[String, String]

    Extra info to associate with the command.

  5. abstract def transformer: DataInteractionTransformer[CommandInteraction, Interaction]

    A transformer to do base processing of the interaction before handling it.

  6. abstract def withExtra(extra: Map[String, String]): CommandBuilder[Interaction, Args]

    Sets the extra info associated with the command.

  7. abstract def withTransformer[NewTo[_]](transformer: DataInteractionTransformer[CommandInteraction, NewTo]): CommandBuilder[NewTo, Args]

    Sets the transformer to process the interaction first.