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
- Alphabetic
- By Inheritance
Inherited
- RawEmoji
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- 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
- val animated: Option[Boolean]
- val available: Option[Boolean]
- val id: EmojiId
- val managed: Option[Boolean]
- val name: String
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val requireColons: Option[Boolean]
- val roles: Seq[RoleId]
- def toEmoji: Emoji
- val user: Option[User]