sealed trait Param[Orig, A, F[_]] extends AnyRef
A parameter that can be used in a slash command.
- 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
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- Param
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract def imap[B](map: (A) => B)(contramap: (B) => A): Param[Orig, B, F]
imap the parameter.
- abstract def imapWithResolve[B](map: (A, ApplicationCommandInteractionDataResolved) => Option[B])(contramap: (B) => A): Param[Orig, B, F]
imap the parameter with the resolved data.
- abstract def name: String
Name of the parameter.
- abstract def toCommandOption: ApplicationCommandOption
Convert this parameter to an ApplicationCommandOption
- abstract def tpe: Aux[Orig]
Type of the parameter.