Module tdlight.api

Class TdApi.Sticker

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

public static final class TdApi.Sticker extends TdApi.Object
Describes a sticker.
  • Field Details

    • setId

      public long setId
      The identifier of the sticker set to which the sticker belongs; 0 if none.
    • width

      public int width
      Sticker width; as defined by the sender.
    • height

      public int height
      Sticker height; as defined by the sender.
    • emoji

      public String emoji
      Emoji corresponding to the sticker.
    • format

      public TdApi.StickerFormat format
      Sticker format.
    • type

      public TdApi.StickerType type
      Sticker type.
    • maskPosition

      public TdApi.MaskPosition maskPosition
      Position where the mask is placed; may be null even the sticker is a mask.
    • customEmojiId

      public long customEmojiId
      Identifier of the emoji if the sticker is a custom emoji.
    • outline

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

      public TdApi.Thumbnail thumbnail
      Sticker thumbnail in WEBP or JPEG format; may be null.
    • isPremium

      public boolean isPremium
      True, if only Premium users can use the sticker.
    • premiumAnimation

      public TdApi.File premiumAnimation
      Premium animation of the sticker; may be null.
    • sticker

      public TdApi.File sticker
      File containing the sticker.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • Sticker

      public Sticker()
      Describes a sticker.
    • Sticker

      public Sticker(long setId, int width, int height, String emoji, TdApi.StickerFormat format, TdApi.StickerType type, TdApi.MaskPosition maskPosition, long customEmojiId, TdApi.ClosedVectorPath[] outline, TdApi.Thumbnail thumbnail, boolean isPremium, TdApi.File premiumAnimation, TdApi.File sticker)
      Describes a sticker.
      Parameters:
      setId - long The identifier of the sticker set to which the sticker belongs; 0 if none.
      width - int Sticker width; as defined by the sender.
      height - int Sticker height; as defined by the sender.
      emoji - String Emoji corresponding to the sticker.
      format - StickerFormat Sticker format.
      type - StickerType Sticker type.
      maskPosition - MaskPosition Position where the mask is placed; may be null even the sticker is a mask.
      customEmojiId - long Identifier of the emoji if the sticker is a custom emoji.
      outline - ClosedVectorPath[] Sticker's outline represented as a list of closed vector paths; may be empty. The coordinate system origin is in the upper-left corner.
      thumbnail - Thumbnail Sticker thumbnail in WEBP or JPEG format; may be null.
      isPremium - boolean True, if only Premium users can use the sticker.
      premiumAnimation - File Premium animation of the sticker; may be null.
      sticker - File File containing the sticker.
    • Sticker

      public Sticker(DataInput input) throws IOException
      Describes a sticker.
      Throws:
      IOException
  • Method Details