Package org.drinkless.tdlib
Class TdApi.ChatStatisticsMessageInteractionInfo
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.ChatStatisticsMessageInteractionInfo
-
- Enclosing class:
- TdApi
public static class TdApi.ChatStatisticsMessageInteractionInfo extends TdApi.Object
Contains statistics 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.longmessageIdMessage identifier.intviewCountNumber of times the message was viewed.
-
Constructor Summary
Constructors Constructor Description ChatStatisticsMessageInteractionInfo()Contains statistics about interactions with a message.ChatStatisticsMessageInteractionInfo(long messageId, int viewCount, int forwardCount)Contains statistics 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
-
messageId
public long messageId
Message identifier.
-
viewCount
public int viewCount
Number of times the message was viewed.
-
forwardCount
public int forwardCount
Number of times the message was forwarded.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ChatStatisticsMessageInteractionInfo
public ChatStatisticsMessageInteractionInfo()
Contains statistics about interactions with a message.
-
ChatStatisticsMessageInteractionInfo
public ChatStatisticsMessageInteractionInfo(long messageId, int viewCount, int forwardCount)Contains statistics about interactions with a message.- Parameters:
messageId- Message identifier.viewCount- Number of times the message was viewed.forwardCount- Number of times the message was forwarded.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-