Package org.drinkless.tdlib
Class TdApi.MessageThreadInfo
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.MessageThreadInfo
-
- Enclosing class:
- TdApi
public static class TdApi.MessageThreadInfo extends TdApi.Object
Contains information about a message thread.
-
-
Field Summary
Fields Modifier and Type Field Description longchatIdIdentifier of the chat to which the message thread belongs.static intCONSTRUCTORIdentifier uniquely determining type of the object.TdApi.DraftMessagedraftMessageA draft of a message in the message thread; may be null.TdApi.Message[]messagesThe messages from which the thread starts.longmessageThreadIdMessage thread identifier, unique within the chat.TdApi.MessageReplyInforeplyInfoInformation about the message thread.intunreadMessageCountApproximate number of unread messages in the message thread.
-
Constructor Summary
Constructors Constructor Description MessageThreadInfo()Contains information about a message thread.MessageThreadInfo(long chatId, long messageThreadId, TdApi.MessageReplyInfo replyInfo, int unreadMessageCount, TdApi.Message[] messages, TdApi.DraftMessage draftMessage)Contains information about a message thread.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
-
-
-
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.
-
replyInfo
public TdApi.MessageReplyInfo replyInfo
Information about the message thread.
-
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.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-