Module tdlight.api

Class TdApi.StickerSet

java.lang.Object
it.tdlight.jni.TdApi.Object
it.tdlight.jni.TdApi.StickerSet
Enclosing class:
TdApi

public static final class TdApi.StickerSet extends TdApi.Object
Represents a sticker set.
  • Field Details

    • id

      public long id
      Identifier of the sticker set.
    • title

      public String title
      Title of the sticker set.
    • name

      public String name
      Name of the sticker set.
    • thumbnail

      public TdApi.Thumbnail thumbnail
      Sticker set thumbnail in WEBP, TGS, or WEBM format with width and height 100; may be null. The file can be downloaded only before the thumbnail is changed.
    • thumbnailOutline

      public TdApi.ClosedVectorPath[] thumbnailOutline
      Sticker set thumbnail's outline represented as a list of closed vector paths; may be empty. The coordinate system origin is in the upper-left corner.
    • isInstalled

      public boolean isInstalled
      True, if the sticker set has been installed by the current user.
    • isArchived

      public boolean isArchived
      True, if the sticker set has been archived. A sticker set can't be installed and archived simultaneously.
    • isOfficial

      public boolean isOfficial
      True, if the sticker set is official.
    • stickerFormat

      public TdApi.StickerFormat stickerFormat
      Format of the stickers in the set.
    • stickerType

      public TdApi.StickerType stickerType
      Type of the stickers in the set.
    • isViewed

      public boolean isViewed
      True for already viewed trending sticker sets.
    • stickers

      public TdApi.Sticker[] stickers
      List of stickers in this set.
    • emojis

      public TdApi.Emojis[] emojis
      A list of emoji corresponding to the stickers in the same order. The list is only for informational purposes, because a sticker is always sent with a fixed emoji from the corresponding Sticker object.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • StickerSet

      public StickerSet()
      Represents a sticker set.
    • StickerSet

      public StickerSet(long id, String title, String name, TdApi.Thumbnail thumbnail, TdApi.ClosedVectorPath[] thumbnailOutline, boolean isInstalled, boolean isArchived, boolean isOfficial, TdApi.StickerFormat stickerFormat, TdApi.StickerType stickerType, boolean isViewed, TdApi.Sticker[] stickers, TdApi.Emojis[] emojis)
      Represents a sticker set.
      Parameters:
      id - long Identifier of the sticker set.
      title - String Title of the sticker set.
      name - String Name of the sticker set.
      thumbnail - Thumbnail Sticker set thumbnail in WEBP, TGS, or WEBM format with width and height 100; may be null. The file can be downloaded only before the thumbnail is changed.
      thumbnailOutline - ClosedVectorPath[] Sticker set thumbnail's outline represented as a list of closed vector paths; may be empty. The coordinate system origin is in the upper-left corner.
      isInstalled - boolean True, if the sticker set has been installed by the current user.
      isArchived - boolean True, if the sticker set has been archived. A sticker set can't be installed and archived simultaneously.
      isOfficial - boolean True, if the sticker set is official.
      stickerFormat - StickerFormat Format of the stickers in the set.
      stickerType - StickerType Type of the stickers in the set.
      isViewed - boolean True for already viewed trending sticker sets.
      stickers - Sticker[] List of stickers in this set.
      emojis - Emojis[] A list of emoji corresponding to the stickers in the same order. The list is only for informational purposes, because a sticker is always sent with a fixed emoji from the corresponding Sticker object.
    • StickerSet

      public StickerSet(DataInput input) throws IOException
      Represents a sticker set.
      Throws:
      IOException
  • Method Details