case class RawEmoji(id: EmojiId, name: String, roles: Seq[RoleId], user: Option[User], requireColons: Option[Boolean], managed: Option[Boolean], animated: Option[Boolean], available: Option[Boolean]) extends Product with Serializable

A raw emoji before going through the cache.

id

The id of the emoji.

name

The emoji name.

roles

The roles that can use this emoji.

user

The user that created this emoji.

requireColons

If the emoji requires colons.

managed

If the emoji is managed.

available

If the emoji can be used.

Source
rawData.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RawEmoji
  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 RawEmoji(id: EmojiId, name: String, roles: Seq[RoleId], user: Option[User], requireColons: Option[Boolean], managed: Option[Boolean], animated: Option[Boolean], available: Option[Boolean])

    id

    The id of the emoji.

    name

    The emoji name.

    roles

    The roles that can use this emoji.

    user

    The user that created this emoji.

    requireColons

    If the emoji requires colons.

    managed

    If the emoji is managed.

    available

    If the emoji can be used.

Value Members

  1. val animated: Option[Boolean]
  2. val available: Option[Boolean]
  3. val id: EmojiId
  4. val managed: Option[Boolean]
  5. val name: String
  6. def productElementNames: Iterator[String]
    Definition Classes
    Product
  7. val requireColons: Option[Boolean]
  8. val roles: Seq[RoleId]
  9. def toEmoji: Emoji
  10. val user: Option[User]