Package org.drinkless.tdlib
Class TdApi.PushMessageContentSticker
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.PushMessageContent
-
- org.drinkless.tdlib.TdApi.PushMessageContentSticker
-
- Enclosing class:
- TdApi
public static class TdApi.PushMessageContentSticker extends TdApi.PushMessageContent
A message with a sticker.
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.StringemojiEmoji corresponding to the sticker; may be empty.booleanisPinnedTrue, if the message is a pinned message with the specified content.TdApi.StickerstickerMessage content; may be null.
-
Constructor Summary
Constructors Constructor Description PushMessageContentSticker()A message with a sticker.PushMessageContentSticker(TdApi.Sticker sticker, String emoji, boolean isPinned)A message with a sticker.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
-
-
-
Field Detail
-
sticker
public TdApi.Sticker sticker
Message content; may be null.
-
emoji
public String emoji
Emoji corresponding to the sticker; may be empty.
-
isPinned
public boolean isPinned
True, if the message is a pinned message with the specified content.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
PushMessageContentSticker
public PushMessageContentSticker()
A message with a sticker.
-
PushMessageContentSticker
public PushMessageContentSticker(TdApi.Sticker sticker, String emoji, boolean isPinned)
A message with a sticker.- Parameters:
sticker- Message content; may be null.emoji- Emoji corresponding to the sticker; may be empty.isPinned- True, if the message is a pinned message with the specified content.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-