Module tdlight.api

Class TdApi.MessageReplyInfo

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

public static final class TdApi.MessageReplyInfo extends TdApi.Object
Contains information about replies to a message.
  • Field Details

    • replyCount

      public int replyCount
      Number of times the message was directly or indirectly replied.
    • recentReplierIds

      public TdApi.MessageSender[] recentReplierIds
      Identifiers of at most 3 recent repliers to the message; available in channels with a discussion supergroup. The users and chats are expected to be inaccessible: only their photo and name will be available.
    • lastReadInboxMessageId

      public long lastReadInboxMessageId
      Identifier of the last read incoming reply to the message.
    • lastReadOutboxMessageId

      public long lastReadOutboxMessageId
      Identifier of the last read outgoing reply to the message.
    • lastMessageId

      public long lastMessageId
      Identifier of the last reply to the message.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • MessageReplyInfo

      public MessageReplyInfo()
      Contains information about replies to a message.
    • MessageReplyInfo

      public MessageReplyInfo(int replyCount, TdApi.MessageSender[] recentReplierIds, long lastReadInboxMessageId, long lastReadOutboxMessageId, long lastMessageId)
      Contains information about replies to a message.
      Parameters:
      replyCount - int Number of times the message was directly or indirectly replied.
      recentReplierIds - MessageSender[] Identifiers of at most 3 recent repliers to the message; available in channels with a discussion supergroup. The users and chats are expected to be inaccessible: only their photo and name will be available.
      lastReadInboxMessageId - long Identifier of the last read incoming reply to the message.
      lastReadOutboxMessageId - long Identifier of the last read outgoing reply to the message.
      lastMessageId - long Identifier of the last reply to the message.
    • MessageReplyInfo

      public MessageReplyInfo(DataInput input) throws IOException
      Contains information about replies to a message.
      Throws:
      IOException
  • Method Details