Module tdlight.api

Class TdApi.MessageInteractionInfo

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

public static final class TdApi.MessageInteractionInfo extends TdApi.Object
Contains information about interactions with a message.
  • Field Details

    • viewCount

      public int viewCount
      Number of times the message was viewed.
    • forwardCount

      public int forwardCount
      Number of times the message was forwarded.
    • replyInfo

      public TdApi.MessageReplyInfo replyInfo
      Information about direct or indirect replies to the message; may be null. Currently, available only in channels with a discussion supergroup and discussion supergroups for messages, which are not replies itself.
    • reactions

      public TdApi.MessageReaction[] reactions
      The list of reactions added to the message.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • MessageInteractionInfo

      public MessageInteractionInfo()
      Contains information about interactions with a message.
    • MessageInteractionInfo

      public MessageInteractionInfo(int viewCount, int forwardCount, TdApi.MessageReplyInfo replyInfo, TdApi.MessageReaction[] reactions)
      Contains information about interactions with a message.
      Parameters:
      viewCount - int Number of times the message was viewed.
      forwardCount - int Number of times the message was forwarded.
      replyInfo - MessageReplyInfo Information about direct or indirect replies to the message; may be null. Currently, available only in channels with a discussion supergroup and discussion supergroups for messages, which are not replies itself.
      reactions - MessageReaction[] The list of reactions added to the message.
    • MessageInteractionInfo

      public MessageInteractionInfo(DataInput input) throws IOException
      Contains information about interactions with a message.
      Throws:
      IOException
  • Method Details