Packages

c

ackcord.data

PartialEmoji

case class PartialEmoji(id: Option[EmojiId] = None, name: Option[String] = None, animated: Option[Boolean] = None) extends Product with Serializable

A partial emoji found in reactions

id

The id of the emoji. If it's absent, it's not a guild emoji.

name

The name of the emoji.

Source
message.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PartialEmoji
  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 PartialEmoji(id: Option[EmojiId] = None, name: Option[String] = None, animated: Option[Boolean] = None)

    id

    The id of the emoji. If it's absent, it's not a guild emoji.

    name

    The name of the emoji.

Value Members

  1. val animated: Option[Boolean]
  2. def asString: String

    Returns a string representation of this emoji for use in requests.

  3. val id: Option[EmojiId]
  4. val name: Option[String]
  5. def productElementNames: Iterator[String]
    Definition Classes
    Product