Class TdApi.MessageThreadInfo

  • Enclosing class:
    TdApi

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

      • 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.
      • 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
        Identifier uniquely determining type of the object.
        See Also:
        Constant Field Values
    • Constructor Detail

      • 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 - Identifier of the chat to which the message thread belongs.
        messageThreadId - Message thread identifier, unique within the chat.
        replyInfo - Information about the message thread.
        unreadMessageCount - Approximate number of unread messages in the message thread.
        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 - A draft of a message in the message thread; may be null.