Package org.drinkless.tdlib
Class TdApi.SearchChatMembers
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.Function
-
- org.drinkless.tdlib.TdApi.SearchChatMembers
-
- Enclosing class:
- TdApi
public static class TdApi.SearchChatMembers extends TdApi.Function
Searches for a specified query in the first name, last name and username of the members of a specified chat. Requires administrator rights in channels.Returns
ChatMembers
-
-
Field Summary
Fields Modifier and Type Field Description longchatIdChat identifier.static intCONSTRUCTORIdentifier uniquely determining type of the object.TdApi.ChatMembersFilterfilterThe type of users to search for; pass null to search among all chat members.intlimitThe maximum number of users to be returned; up to 200.StringqueryQuery to search for.
-
Constructor Summary
Constructors Constructor Description SearchChatMembers()Default constructor for a function, which searches for a specified query in the first name, last name and username of the members of a specified chat.SearchChatMembers(long chatId, String query, int limit, TdApi.ChatMembersFilter filter)Creates a function, which searches for a specified query in the first name, last name and username of the members of a specified chat.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Function
toString
-
-
-
-
Field Detail
-
chatId
public long chatId
Chat identifier.
-
query
public String query
Query to search for.
-
limit
public int limit
The maximum number of users to be returned; up to 200.
-
filter
public TdApi.ChatMembersFilter filter
The type of users to search for; pass null to search among all chat members.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
SearchChatMembers
public SearchChatMembers()
Default constructor for a function, which searches for a specified query in the first name, last name and username of the members of a specified chat. Requires administrator rights in channels.Returns
ChatMembers
-
SearchChatMembers
public SearchChatMembers(long chatId, String query, int limit, TdApi.ChatMembersFilter filter)Creates a function, which searches for a specified query in the first name, last name and username of the members of a specified chat. Requires administrator rights in channels.Returns
ChatMembers- Parameters:
chatId- Chat identifier.query- Query to search for.limit- The maximum number of users to be returned; up to 200.filter- The type of users to search for; pass null to search among all chat members.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-