Package org.drinkless.tdlib
Class TdApi.ChatStatisticsInteractionInfo
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.ChatStatisticsInteractionInfo
- Enclosing class:
- TdApi
Contains statistics about interactions with a message sent in the chat or a story posted on behalf of the chat.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
Identifier uniquely determining type of the object.int
Number of times the object was forwarded.Type of the object.int
Number of times reactions were added to the object.int
Number of times the object was viewed. -
Constructor Summary
ConstructorsConstructorDescriptionContains statistics about interactions with a message sent in the chat or a story posted on behalf of the chat.ChatStatisticsInteractionInfo
(TdApi.ChatStatisticsObjectType objectType, int viewCount, int forwardCount, int reactionCount) Contains statistics about interactions with a message sent in the chat or a story posted on behalf of the chat. -
Method Summary
Modifier and TypeMethodDescriptionint
Returns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
Field Details
-
objectType
Type of the object. -
viewCount
public int viewCountNumber of times the object was viewed. -
forwardCount
public int forwardCountNumber of times the object was forwarded. -
reactionCount
public int reactionCountNumber of times reactions were added to the object. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
ChatStatisticsInteractionInfo
public ChatStatisticsInteractionInfo()Contains statistics about interactions with a message sent in the chat or a story posted on behalf of the chat. -
ChatStatisticsInteractionInfo
public ChatStatisticsInteractionInfo(TdApi.ChatStatisticsObjectType objectType, int viewCount, int forwardCount, int reactionCount) Contains statistics about interactions with a message sent in the chat or a story posted on behalf of the chat.- Parameters:
objectType
- Type of the object.viewCount
- Number of times the object was viewed.forwardCount
- Number of times the object was forwarded.reactionCount
- Number of times reactions were added to the object.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.Object
Returns an identifier uniquely determining type of the object.- Specified by:
getConstructor
in classTdApi.Object
- Returns:
- this.CONSTRUCTOR
-