Packages

c

ackcord.data

Reaction

case class Reaction(count: Int, me: Boolean, emoji: PartialEmoji) extends Product with Serializable

A reaction to a message

count

The amount of people that have reacted with this emoji.

me

If the client has reacted with this emoji.

emoji

The emoji of the reaction.

Source
message.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Reaction
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Reaction(count: Int, me: Boolean, emoji: PartialEmoji)

    count

    The amount of people that have reacted with this emoji.

    me

    If the client has reacted with this emoji.

    emoji

    The emoji of the reaction.

Value Members

  1. val count: Int
  2. val emoji: PartialEmoji
  3. val me: Boolean
  4. def productElementNames: Iterator[String]
    Definition Classes
    Product