Package org.drinkless.tdlib
Class TdApi.SearchChatMembers
- Enclosing class:
- TdApi
Searches for a specified query in the first name, last name and usernames of the members of a specified chat. Requires administrator rights if the chat is a channel.
Returns ChatMembers
-
Field Summary
FieldsModifier and TypeFieldDescriptionlongChat identifier.static final intIdentifier uniquely determining type of the object.The type of users to search for; pass null to search among all chat members.intThe maximum number of users to be returned; up to 200.Query to search for. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for a function, which searches for a specified query in the first name, last name and usernames 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 usernames of the members of a specified chat. -
Method Summary
Modifier and TypeMethodDescriptionintReturns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Function
toString
-
Field Details
-
chatId
public long chatIdChat identifier. -
query
Query to search for. -
limit
public int limitThe 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. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
SearchChatMembers
public SearchChatMembers()Default constructor for a function, which searches for a specified query in the first name, last name and usernames of the members of a specified chat. Requires administrator rights if the chat is a channel.Returns
ChatMembers -
SearchChatMembers
Creates a function, which searches for a specified query in the first name, last name and usernames of the members of a specified chat. Requires administrator rights if the chat is a channel.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 Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.ObjectReturns an identifier uniquely determining type of the object.- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-