Package org.drinkless.tdlib
Class TdApi.UpdateChatOnlineMemberCount
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.Update
-
- org.drinkless.tdlib.TdApi.UpdateChatOnlineMemberCount
-
- Enclosing class:
- TdApi
public static class TdApi.UpdateChatOnlineMemberCount extends TdApi.Update
The number of online group members has changed. This update with non-zero count is sent only for currently opened chats. There is no guarantee that it will be sent just after the count has changed.
-
-
Field Summary
Fields Modifier and Type Field Description longchatIdIdentifier of the chat.static intCONSTRUCTORIdentifier uniquely determining type of the object.intonlineMemberCountNew number of online members in the chat, or 0 if unknown.
-
Constructor Summary
Constructors Constructor Description UpdateChatOnlineMemberCount()The number of online group members has changed.UpdateChatOnlineMemberCount(long chatId, int onlineMemberCount)The number of online group members has changed.
-
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
-
chatId
public long chatId
Identifier of the chat.
-
onlineMemberCount
public int onlineMemberCount
New number of online members in the chat, or 0 if unknown.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
UpdateChatOnlineMemberCount
public UpdateChatOnlineMemberCount()
The number of online group members has changed. This update with non-zero count is sent only for currently opened chats. There is no guarantee that it will be sent just after the count has changed.
-
UpdateChatOnlineMemberCount
public UpdateChatOnlineMemberCount(long chatId, int onlineMemberCount)The number of online group members has changed. This update with non-zero count is sent only for currently opened chats. There is no guarantee that it will be sent just after the count has changed.- Parameters:
chatId- Identifier of the chat.onlineMemberCount- New number of online members in the chat, or 0 if unknown.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-