case class ValueParam[Orig, A, F[_]] extends Param[Orig, A, F] with Product with Serializable
A parameter with a normal value..
- 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
Ordering
- Alphabetic
- By Inheritance
Inherited
- ValueParam
- Serializable
- Product
- Equals
- Param
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- val channelTypes: Seq[ChannelType]
- val contramap: (A) => Orig
- val description: String
- val fTransformer: FTransformer[F]
- Definition Classes
- ValueParam → Param
- def imap[B](map: (A) => B)(contramap: (B) => A): ValueParam[Orig, B, F]
imap the parameter.
imap the parameter.
- Definition Classes
- ValueParam → Param
- def imapWithResolve[B](map: (A, ApplicationCommandInteractionDataResolved) => Option[B])(contramap: (B) => A): ValueParam[Orig, B, F]
imap the parameter with the resolved data.
imap the parameter with the resolved data.
- Definition Classes
- ValueParam → Param
- val map: (Orig, ApplicationCommandInteractionDataResolved) => Option[A]
- val name: String
Name of the parameter.
Name of the parameter.
- Definition Classes
- ValueParam → Param
- def notRequired: ValueParam[Orig, A, Option]
Sets the parameter as optional.
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def required: ValueParam[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
- ValueParam → Param
- val tpe: Aux[Orig]
Type of the parameter.
Type of the parameter.
- Definition Classes
- ValueParam → Param
- 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