case class Sticker(id: StickerId, packId: Option[SnowflakeType[StickerPack]], name: String, description: Option[String], tags: Option[String], tpe: StickerType, formatType: FormatType, available: Option[Boolean], guildId: Option[GuildId], userId: Option[UserId], sortValue: Option[Int]) extends Product with Serializable
The structure of a sticker sent in a message.
- id
Id of the sticker.
- packId
Id of the pack the sticker is from.
- name
Name of the sticker.
- description
Description of the sticker.
- tags
A comma-separated list of tags for the sticker.
- formatType
Type of sticker format.
- available
If this guild sticker can currently be used.
- guildId
Id of the guild that owns this sticker.
- userId
The id of the user that uploaded the sticker.
- sortValue
A standard sticker's sort value in it's pack.
- Source
- sticker.scala
- Alphabetic
- By Inheritance
- Sticker
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new Sticker(id: StickerId, packId: Option[SnowflakeType[StickerPack]], name: String, description: Option[String], tags: Option[String], tpe: StickerType, formatType: FormatType, available: Option[Boolean], guildId: Option[GuildId], userId: Option[UserId], sortValue: Option[Int])
- id
Id of the sticker.
- packId
Id of the pack the sticker is from.
- name
Name of the sticker.
- description
Description of the sticker.
- tags
A comma-separated list of tags for the sticker.
- formatType
Type of sticker format.
- available
If this guild sticker can currently be used.
- guildId
Id of the guild that owns this sticker.
- userId
The id of the user that uploaded the sticker.
- sortValue
A standard sticker's sort value in it's pack.
Value Members
- val available: Option[Boolean]
- val description: Option[String]
- val formatType: FormatType
- val guildId: Option[GuildId]
- val id: StickerId
- val name: String
- val packId: Option[SnowflakeType[StickerPack]]
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val sortValue: Option[Int]
- val tags: Option[String]
- val tpe: StickerType
- val userId: Option[UserId]