Package org.drinkless.tdlib
Class TdApi.ChatMembers
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.ChatMembers
-
- Enclosing class:
- TdApi
public static class TdApi.ChatMembers extends TdApi.Object
Contains a list of chat members.
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.TdApi.ChatMember[]membersA list of chat members.inttotalCountApproximate total count of chat members found.
-
Constructor Summary
Constructors Constructor Description ChatMembers()Contains a list of chat members.ChatMembers(int totalCount, TdApi.ChatMember[] members)Contains a list of chat members.
-
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
-
totalCount
public int totalCount
Approximate total count of chat members found.
-
members
public TdApi.ChatMember[] members
A list of chat members.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ChatMembers
public ChatMembers()
Contains a list of chat members.
-
ChatMembers
public ChatMembers(int totalCount, TdApi.ChatMember[] members)Contains a list of chat members.- Parameters:
totalCount- Approximate total count of chat members found.members- A list of chat members.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-