Uses of Class
org.drinkless.tdlib.TdApi.SearchMessagesFilter
-
Packages that use TdApi.SearchMessagesFilter Package Description org.drinkless.tdlib -
-
Uses of TdApi.SearchMessagesFilter in org.drinkless.tdlib
Subclasses of TdApi.SearchMessagesFilter in org.drinkless.tdlib Modifier and Type Class Description static classTdApi.SearchMessagesFilterAnimationReturns only animation messages.static classTdApi.SearchMessagesFilterAudioReturns only audio messages.static classTdApi.SearchMessagesFilterChatPhotoReturns only messages containing chat photos.static classTdApi.SearchMessagesFilterDocumentReturns only document messages.static classTdApi.SearchMessagesFilterEmptyReturns all found messages, no filter is applied.static classTdApi.SearchMessagesFilterFailedToSendReturns only failed to send messages.static classTdApi.SearchMessagesFilterMentionReturns only messages with mentions of the current user, or messages that are replies to their messages.static classTdApi.SearchMessagesFilterPhotoReturns only photo messages.static classTdApi.SearchMessagesFilterPhotoAndVideoReturns only photo and video messages.static classTdApi.SearchMessagesFilterPinnedReturns only pinned messages.static classTdApi.SearchMessagesFilterUnreadMentionReturns only messages with unread mentions of the current user, or messages that are replies to their messages.static classTdApi.SearchMessagesFilterUrlReturns only messages containing URLs.static classTdApi.SearchMessagesFilterVideoReturns only video messages.static classTdApi.SearchMessagesFilterVideoNoteReturns only video note messages.static classTdApi.SearchMessagesFilterVoiceAndVideoNoteReturns only voice and video note messages.static classTdApi.SearchMessagesFilterVoiceNoteReturns only voice note messages.Fields in org.drinkless.tdlib declared as TdApi.SearchMessagesFilter Modifier and Type Field Description TdApi.SearchMessagesFilterTdApi.GetChatMessageCalendar. filterFilter for message content.TdApi.SearchMessagesFilterTdApi.GetChatMessageCount. filterFilter for message content; searchMessagesFilterEmpty is unsupported in this function.TdApi.SearchMessagesFilterTdApi.GetChatSparseMessagePositions. filterFilter for message content.TdApi.SearchMessagesFilterTdApi.SearchChatMessages. filterAdditional filter for messages to search; pass null to search for all messages.TdApi.SearchMessagesFilterTdApi.SearchMessages. filterAdditional filter for messages to search; pass null to search for all messages.TdApi.SearchMessagesFilterTdApi.SearchSecretMessages. filterAdditional filter for messages to search; pass null to search for all messages.Constructors in org.drinkless.tdlib with parameters of type TdApi.SearchMessagesFilter Constructor Description GetChatMessageCalendar(long chatId, TdApi.SearchMessagesFilter filter, long fromMessageId)Creates a function, which returns information about the next messages of the specified type in the chat split by days.GetChatMessageCount(long chatId, TdApi.SearchMessagesFilter filter, boolean returnLocal)Creates a function, which returns approximate number of messages of the specified type in the chat.GetChatSparseMessagePositions(long chatId, TdApi.SearchMessagesFilter filter, long fromMessageId, int limit)Creates a function, which returns sparse positions of messages of the specified type in the chat to be used for shared media scroll implementation.SearchChatMessages(long chatId, String query, TdApi.MessageSender senderId, long fromMessageId, int offset, int limit, TdApi.SearchMessagesFilter filter, long messageThreadId)Creates a function, which searches for messages with given words in the chat.SearchMessages(TdApi.ChatList chatList, String query, int offsetDate, long offsetChatId, long offsetMessageId, int limit, TdApi.SearchMessagesFilter filter, int minDate, int maxDate)Creates a function, which searches for messages in all chats except secret chats.SearchSecretMessages(long chatId, String query, String offset, int limit, TdApi.SearchMessagesFilter filter)Creates a function, which searches for messages in secret chats.
-