Module tdlight.api

Class TdApi.ViewMessages

Enclosing class:
TdApi

public static final class TdApi.ViewMessages extends TdApi.Function<TdApi.Ok>
Informs TDLib that messages are being viewed by the user. Many useful activities depend on whether the messages are currently being viewed or not (e.g., marking messages as read, incrementing a view counter, updating a view counter, removing deleted messages in supergroups and channels).

Returns Ok

  • Field Details

    • chatId

      public long chatId
      Chat identifier.
    • messageThreadId

      public long messageThreadId
      If not 0, a message thread identifier in which the messages are being viewed.
    • messageIds

      public long[] messageIds
      The identifiers of the messages being viewed.
    • forceRead

      public boolean forceRead
      True, if messages in closed chats must be marked as read by the request.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • ViewMessages

      public ViewMessages()
      Informs TDLib that messages are being viewed by the user. Many useful activities depend on whether the messages are currently being viewed or not (e.g., marking messages as read, incrementing a view counter, updating a view counter, removing deleted messages in supergroups and channels).

      Returns Ok

    • ViewMessages

      public ViewMessages(long chatId, long messageThreadId, long[] messageIds, boolean forceRead)
      Informs TDLib that messages are being viewed by the user. Many useful activities depend on whether the messages are currently being viewed or not (e.g., marking messages as read, incrementing a view counter, updating a view counter, removing deleted messages in supergroups and channels).

      Returns Ok

      Parameters:
      chatId - long Chat identifier.
      messageThreadId - long If not 0, a message thread identifier in which the messages are being viewed.
      messageIds - long[] The identifiers of the messages being viewed.
      forceRead - boolean True, if messages in closed chats must be marked as read by the request.
    • ViewMessages

      public ViewMessages(DataInput input) throws IOException
      Informs TDLib that messages are being viewed by the user. Many useful activities depend on whether the messages are currently being viewed or not (e.g., marking messages as read, incrementing a view counter, updating a view counter, removing deleted messages in supergroups and channels).

      Returns Ok

      Throws:
      IOException
  • Method Details