Module tdlight.api

Class TdApi.MessageThreadInfo

java.lang.Object
it.tdlight.jni.TdApi.Object
it.tdlight.jni.TdApi.MessageThreadInfo
Enclosing class:
TdApi

public static final class TdApi.MessageThreadInfo extends TdApi.Object
Contains information about a message thread.
  • Field Details

    • chatId

      public long chatId
      Identifier of the chat to which the message thread belongs.
    • messageThreadId

      public long messageThreadId
      Message thread identifier, unique within the chat.
    • replyInfo

      public TdApi.MessageReplyInfo replyInfo
      Information about the message thread; may be null for forum topic threads.
    • unreadMessageCount

      public int unreadMessageCount
      Approximate number of unread messages in the message thread.
    • messages

      public TdApi.Message[] messages
      The messages from which the thread starts. The messages are returned in a reverse chronological order (i.e., in order of decreasing messageId).
    • draftMessage

      public TdApi.DraftMessage draftMessage
      A draft of a message in the message thread; may be null.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • MessageThreadInfo

      public MessageThreadInfo()
      Contains information about a message thread.
    • MessageThreadInfo

      public MessageThreadInfo(long chatId, long messageThreadId, TdApi.MessageReplyInfo replyInfo, int unreadMessageCount, TdApi.Message[] messages, TdApi.DraftMessage draftMessage)
      Contains information about a message thread.
      Parameters:
      chatId - long Identifier of the chat to which the message thread belongs.
      messageThreadId - long Message thread identifier, unique within the chat.
      replyInfo - MessageReplyInfo Information about the message thread; may be null for forum topic threads.
      unreadMessageCount - int Approximate number of unread messages in the message thread.
      messages - Message[] The messages from which the thread starts. The messages are returned in a reverse chronological order (i.e., in order of decreasing messageId).
      draftMessage - DraftMessage A draft of a message in the message thread; may be null.
    • MessageThreadInfo

      public MessageThreadInfo(DataInput input) throws IOException
      Contains information about a message thread.
      Throws:
      IOException
  • Method Details