case class ChoiceParam[Orig, A, F[_]] extends Param[Orig, A, F] with Product with Serializable
A parameter that allows multiple choices for the user.
- Orig
The type the parameter originally has.
- A
The type the parameter has after a bit of processing.
- F
The context of the parameter, either Id or Option currently.
- Source
- params.scala
- Alphabetic
- By Inheritance
- ChoiceParam
- Serializable
- Product
- Equals
- Param
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- val autocomplete: Option[(String) => Seq[Orig]]
- val choices: Map[String, Orig]
- val contramap: (A) => Orig
- val description: String
- val fTransformer: FTransformer[F]
- Definition Classes
- ChoiceParam → Param
- def imap[B](map: (A) => B)(contramap: (B) => A): ChoiceParam[Orig, B, F]
imap the parameter.
imap the parameter.
- Definition Classes
- ChoiceParam → Param
- def imapWithResolve[B](map: (A, ApplicationCommandInteractionDataResolved) => Option[B])(contramap: (B) => A): ChoiceParam[Orig, B, F]
imap the parameter with the resolved data.
imap the parameter with the resolved data.
- Definition Classes
- ChoiceParam → Param
- val makeOptionChoice: (String, Orig) => ApplicationCommandOptionChoice
- val map: (Orig, ApplicationCommandInteractionDataResolved) => Option[A]
- val maxValue: Option[Either[Int, Double]]
- val minValue: Option[Either[Int, Double]]
- val name: String
Name of the parameter.
Name of the parameter.
- Definition Classes
- ChoiceParam → Param
- def noAutocomplete: ChoiceParam[Orig, A, F]
- def notRequired: ChoiceParam[Orig, A, Option]
Sets the parameter as optional.
- val processAutoComplete: (Seq[Orig]) => Seq[Orig]
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def required: ChoiceParam[Orig, A, Id]
Sets the parameter as required.
- def toCommandOption: ApplicationCommandOption
Convert this parameter to an ApplicationCommandOption
Convert this parameter to an ApplicationCommandOption
- Definition Classes
- ChoiceParam → Param
- val tpe: Aux[Orig]
Type of the parameter.
Type of the parameter.
- Definition Classes
- ChoiceParam → Param
- def withAutocomplete(complete: (String) => Seq[A]): ChoiceParam[Orig, A, F]
Sets the autocomplete to use for the parameter.
Sets the autocomplete to use for the parameter. Can't be set at the same time as choices.
- def withChoices(choices: Seq[String])(implicit ev: =:=[String, A]): ChoiceParam[Orig, A, F]
Sets the choices for the parameter.
Sets the choices for the parameter. Can't be set at the same time as autocomplete.
- def withChoices(choices: Map[String, A]): ChoiceParam[Orig, A, F]
Sets the choices for the parameter.
Sets the choices for the parameter. Can't be set at the same time as autocomplete.
- def ~[B, G[_]](other: Param[_, B, G]): ParamList[~[F[A], G[B]]]
Chain this parameter together with another.
Chain this parameter together with another.
- Definition Classes
- Param