Class TdApi.SearchMessages

Enclosing class:
TdApi

public static class TdApi.SearchMessages
extends TdApi.Function
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 the library.

Returns Messages

  • Field Summary

    Fields
    Modifier and Type Field Description
    TdApi.ChatList chatList
    Chat list in which to search messages; pass null to search in all chats regardless of their chat list.
    static int CONSTRUCTOR  
    TdApi.SearchMessagesFilter filter
    Filter for message content in the search results; searchMessagesFilterCall, searchMessagesFilterMissedCall, searchMessagesFilterMention, searchMessagesFilterUnreadMention, searchMessagesFilterFailedToSend and searchMessagesFilterPinned are unsupported in this function.
    int limit
    The maximum number of messages to be returned; up to 100.
    int maxDate
    If not 0, the maximum date of the messages to return.
    int minDate
    If not 0, the minimum date of the messages to return.
    long offsetChatId
    The chat identifier of the last found message, or 0 for the first request.
    int offsetDate
    The date of the message starting from which the results should be fetched.
    long offsetMessageId
    The message identifier of the last found message, or 0 for the first request.
    String query
    Query to search for.
  • Constructor Summary

    Constructors
    Constructor Description
    SearchMessages()
    Searches for messages in all chats except secret chats.
    SearchMessages​(TdApi.ChatList chatList, String query, int offsetDate, long offsetChatId, long offsetMessageId, int limit, TdApi.SearchMessagesFilter filter, int minDate, int maxDate)
    Searches for messages in all chats except secret chats.
    SearchMessages​(DataInput input)  
  • Method Summary

    Modifier and Type Method Description
    boolean equals​(Object o)  
    int getConstructor()  
    int hashCode()  
    void serialize​(DataOutputStream output)  

    Methods inherited from class it.tdlight.jni.TdApi.Function

    toString

    Methods inherited from class it.tdlight.jni.TdApi.Object

    serialize

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • chatList

      public TdApi.ChatList chatList
      Chat list in which to search messages; pass null to search in all chats regardless of their chat list.
    • query

      public String query
      Query to search for.
    • offsetDate

      public int offsetDate
      The date of the message starting from which the results should be fetched. Use 0 or any date in the future to get results from the last message.
    • offsetChatId

      public long offsetChatId
      The chat identifier of the last found message, or 0 for the first request.
    • offsetMessageId

      public long offsetMessageId
      The message identifier of the last found message, or 0 for the first request.
    • limit

      public int limit
      The maximum number of messages to be returned; up to 100. Fewer messages may be returned than specified by the limit, even if the end of the message history has not been reached.
    • filter

      Filter for message content in the search results; searchMessagesFilterCall, searchMessagesFilterMissedCall, searchMessagesFilterMention, searchMessagesFilterUnreadMention, searchMessagesFilterFailedToSend and searchMessagesFilterPinned are unsupported in this function.
    • minDate

      public int minDate
      If not 0, the minimum date of the messages to return.
    • maxDate

      public int maxDate
      If not 0, the maximum date of the messages to return.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
      Constant Field Values
  • Constructor Details

    • SearchMessages

      public SearchMessages()
      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 the library.

      Returns Messages

    • SearchMessages

      public SearchMessages​(TdApi.ChatList chatList, String query, int offsetDate, long offsetChatId, long offsetMessageId, int limit, TdApi.SearchMessagesFilter filter, int minDate, int maxDate)
      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 the library.

      Returns Messages

      Parameters:
      chatList - ChatList Chat list in which to search messages; pass null to search in all chats regardless of their chat list.
      query - String Query to search for.
      offsetDate - int The date of the message starting from which the results should be fetched. Use 0 or any date in the future to get results from the last message.
      offsetChatId - long The chat identifier of the last found message, or 0 for the first request.
      offsetMessageId - long The message identifier of the last found message, or 0 for the first request.
      limit - int The maximum number of messages to be returned; up to 100. Fewer messages may be returned than specified by the limit, even if the end of the message history has not been reached.
      filter - SearchMessagesFilter Filter for message content in the search results; searchMessagesFilterCall, searchMessagesFilterMissedCall, searchMessagesFilterMention, searchMessagesFilterUnreadMention, searchMessagesFilterFailedToSend and searchMessagesFilterPinned are unsupported in this function.
      minDate - int If not 0, the minimum date of the messages to return.
      maxDate - int If not 0, the maximum date of the messages to return.
    • SearchMessages

      public SearchMessages​(DataInput input) throws IOException
      Throws:
      IOException
  • Method Details