Package org.drinkless.tdlib
Class TdApi.MessageInteractionInfo
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.MessageInteractionInfo
-
- Enclosing class:
- TdApi
public static class TdApi.MessageInteractionInfo extends TdApi.Object
Contains information about interactions with a message.
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.intforwardCountNumber of times the message was forwarded.TdApi.MessageReplyInforeplyInfoInformation about direct or indirect replies to the message; may be null.intviewCountNumber of times the message was viewed.
-
Constructor Summary
Constructors Constructor Description MessageInteractionInfo()Contains information about interactions with a message.MessageInteractionInfo(int viewCount, int forwardCount, TdApi.MessageReplyInfo replyInfo)Contains information about interactions with a message.
-
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
-
viewCount
public int viewCount
Number of times the message was viewed.
-
forwardCount
public int forwardCount
Number of times the message was forwarded.
-
replyInfo
public TdApi.MessageReplyInfo 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.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
MessageInteractionInfo
public MessageInteractionInfo()
Contains information about interactions with a message.
-
MessageInteractionInfo
public MessageInteractionInfo(int viewCount, int forwardCount, TdApi.MessageReplyInfo replyInfo)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.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-