Package org.drinkless.tdlib
Class TdApi.MessageInteractionInfo
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.MessageInteractionInfo
- Enclosing class:
- TdApi
Contains information about interactions with a message.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intIdentifier uniquely determining type of the object.intNumber of times the message was forwarded.The list of reactions or tags added to the message; may be null.Information about direct or indirect replies to the message; may be null.intNumber of times the message was viewed. -
Constructor Summary
ConstructorsConstructorDescriptionContains information about interactions with a message.MessageInteractionInfo(int viewCount, int forwardCount, TdApi.MessageReplyInfo replyInfo, TdApi.MessageReactions reactions) Contains information about interactions with a message. -
Method Summary
Modifier and TypeMethodDescriptionintReturns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
Field Details
-
viewCount
public int viewCountNumber of times the message was viewed. -
forwardCount
public int forwardCountNumber of times the message was forwarded. -
replyInfo
Information about direct or indirect replies to the message; may be null. Currently, available only in channels with a discussion supergroup and discussion supergroups for messages, which are not replies itself. -
reactions
The list of reactions or tags added to the message; may be null. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
MessageInteractionInfo
public MessageInteractionInfo()Contains information about interactions with a message. -
MessageInteractionInfo
public MessageInteractionInfo(int viewCount, int forwardCount, TdApi.MessageReplyInfo replyInfo, TdApi.MessageReactions reactions) Contains information about interactions with a message.- Parameters:
viewCount- Number of times the message was viewed.forwardCount- Number of times the message was forwarded.replyInfo- Information about direct or indirect replies to the message; may be null. Currently, available only in channels with a discussion supergroup and discussion supergroups for messages, which are not replies itself.reactions- The list of reactions or tags added to the message; may be null.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.ObjectReturns an identifier uniquely determining type of the object.- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-