Package org.drinkless.tdlib
Class TdApi.SearchMessages
- Enclosing class:
- TdApi
Searches for messages in all chats except secret chats. Returns the results in reverse chronological order (i.e., in order of decreasing (date, chatId, messageId)). For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit.
Returns FoundMessages
-
Field Summary
FieldsModifier and TypeFieldDescriptionChat list in which to search messages; pass null to search in all chats regardless of their chat list.Additional filter for type of the chat of the searched messages; pass null to search for messages in all chats.static final int
Identifier uniquely determining type of the object.Additional filter for messages to search; pass null to search for all messages.int
The maximum number of messages to be returned; up to 100.int
If not 0, the maximum date of the messages to return.int
If not 0, the minimum date of the messages to return.Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results.Query to search for. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for a function, which searches for messages in all chats except secret chats.SearchMessages
(TdApi.ChatList chatList, String query, String offset, int limit, TdApi.SearchMessagesFilter filter, TdApi.SearchMessagesChatTypeFilter chatTypeFilter, int minDate, int maxDate) Creates a function, which searches for messages in all chats except secret chats. -
Method Summary
Modifier and TypeMethodDescriptionint
Returns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Function
toString
-
Field Details
-
chatList
Chat list in which to search messages; pass null to search in all chats regardless of their chat list. Only Main and Archive chat lists are supported. -
query
Query to search for. -
offset
Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results. -
limit
public int limitThe maximum number of messages to be returned; up to 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit. -
filter
Additional filter for messages to search; pass null to search for all messages. Filters searchMessagesFilterMention, searchMessagesFilterUnreadMention, searchMessagesFilterUnreadReaction, searchMessagesFilterFailedToSend, and searchMessagesFilterPinned are unsupported in this function. -
chatTypeFilter
Additional filter for type of the chat of the searched messages; pass null to search for messages in all chats. -
minDate
public int minDateIf not 0, the minimum date of the messages to return. -
maxDate
public int maxDateIf not 0, the maximum date of the messages to return. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
SearchMessages
public SearchMessages()Default constructor for a function, which searches for messages in all chats except secret chats. Returns the results in reverse chronological order (i.e., in order of decreasing (date, chatId, messageId)). For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit.Returns
FoundMessages
-
SearchMessages
public SearchMessages(TdApi.ChatList chatList, String query, String offset, int limit, TdApi.SearchMessagesFilter filter, TdApi.SearchMessagesChatTypeFilter chatTypeFilter, int minDate, int maxDate) Creates a function, which searches for messages in all chats except secret chats. Returns the results in reverse chronological order (i.e., in order of decreasing (date, chatId, messageId)). For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit.Returns
FoundMessages
- Parameters:
chatList
- Chat list in which to search messages; pass null to search in all chats regardless of their chat list. Only Main and Archive chat lists are supported.query
- Query to search for.offset
- Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results.limit
- The maximum number of messages to be returned; up to 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit.filter
- Additional filter for messages to search; pass null to search for all messages. Filters searchMessagesFilterMention, searchMessagesFilterUnreadMention, searchMessagesFilterUnreadReaction, searchMessagesFilterFailedToSend, and searchMessagesFilterPinned are unsupported in this function.chatTypeFilter
- Additional filter for type of the chat of the searched messages; pass null to search for messages in all chats.minDate
- If not 0, the minimum date of the messages to return.maxDate
- If not 0, the maximum date of the messages to return.
-
-
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
-