Class TdApi.SearchCallMessages

Enclosing class:
TdApi

public static class TdApi.SearchCallMessages
extends TdApi.Function
Searches for call messages. Returns the results in reverse chronological order (i. e., in order of decreasing messageId). For optimal performance the number of returned messages is chosen by the library.

Returns Messages

  • Field Details

    • fromMessageId

      public long fromMessageId
      Identifier of the message from which to search; use 0 to get results from the last message.
    • 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.
    • onlyMissed

      public boolean onlyMissed
      If true, returns only messages with missed calls.
    • CONSTRUCTOR

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

    • SearchCallMessages

      public SearchCallMessages()
      Searches for call messages. Returns the results in reverse chronological order (i. e., in order of decreasing messageId). For optimal performance the number of returned messages is chosen by the library.

      Returns Messages

    • SearchCallMessages

      public SearchCallMessages​(long fromMessageId, int limit, boolean onlyMissed)
      Searches for call messages. Returns the results in reverse chronological order (i. e., in order of decreasing messageId). For optimal performance the number of returned messages is chosen by the library.

      Returns Messages

      Parameters:
      fromMessageId - long Identifier of the message from which to search; use 0 to get results from the last message.
      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.
      onlyMissed - boolean If true, returns only messages with missed calls.
    • SearchCallMessages

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