object DataInteractionTransformer

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

Value Members

  1. def identity[F[_]]: DataInteractionTransformer[F, F]
  2. def inVoiceChannel[I[A] <: GuildInteraction, O[_]](create: (VoiceGuildChannel) => ~>[I, O]): DataInteractionTransformer[I, O]

    Ensures that the executor of the interaction is in a voice channel.

  3. def needPermission[M[A] <: GuildInteraction](neededPermission: Permission): DataInteractionTransformer[M, M]

    A command function that requires that those who use this command need some set of permissions.

  4. def onlyInGuild[I[A] <: ResolvedInteraction, O[_]](create: (GatewayGuild, GuildMember, Permission, TextGuildChannel) => ~>[I, O]): DataInteractionTransformer[I, O]

    A command function that only allows commands sent from a guild.

  5. def resolved[I[A] <: CacheInteraction, O[_]](create: (TextChannel, Option[GatewayGuild]) => ~>[I, O]): DataInteractionTransformer[I, O]

    A command transformer which resolves most ids from the cache.