Packages

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
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Sticker
  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 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

  1. val available: Option[Boolean]
  2. val description: Option[String]
  3. val formatType: FormatType
  4. val guildId: Option[GuildId]
  5. val id: StickerId
  6. val name: String
  7. val packId: Option[SnowflakeType[StickerPack]]
  8. def productElementNames: Iterator[String]
    Definition Classes
    Product
  9. val sortValue: Option[Int]
  10. val tags: Option[String]
  11. val tpe: StickerType
  12. val userId: Option[UserId]