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
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ValueParam
  2. Serializable
  3. Product
  4. Equals
  5. Param
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. val channelTypes: Seq[ChannelType]
  2. val contramap: (A) => Orig
  3. val description: String
  4. val fTransformer: FTransformer[F]
    Definition Classes
    ValueParamParam
  5. def imap[B](map: (A) => B)(contramap: (B) => A): ValueParam[Orig, B, F]

    imap the parameter.

    imap the parameter.

    Definition Classes
    ValueParamParam
  6. 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
    ValueParamParam
  7. val map: (Orig, ApplicationCommandInteractionDataResolved) => Option[A]
  8. val name: String

    Name of the parameter.

    Name of the parameter.

    Definition Classes
    ValueParamParam
  9. def notRequired: ValueParam[Orig, A, Option]

    Sets the parameter as optional.

  10. def productElementNames: Iterator[String]
    Definition Classes
    Product
  11. def required: ValueParam[Orig, A, Id]

    Sets the parameter as required.

  12. def toCommandOption: ApplicationCommandOption

    Convert this parameter to an ApplicationCommandOption

    Convert this parameter to an ApplicationCommandOption

    Definition Classes
    ValueParamParam
  13. val tpe: Aux[Orig]

    Type of the parameter.

    Type of the parameter.

    Definition Classes
    ValueParamParam
  14. 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