Module tdlight.api

Class TdApi.GetChatEventLog

Enclosing class:
TdApi

public static final class TdApi.GetChatEventLog extends TdApi.Function<TdApi.ChatEvents>
Returns a list of service actions taken by chat members and administrators in the last 48 hours. Available only for supergroups and channels. Requires administrator rights. Returns results in reverse chronological order (i.e., in order of decreasing eventId). Returns ChatEvents
  • Field Details

    • chatId

      public long chatId
      Chat identifier.
    • query

      public String query
      Search query by which to filter events.
    • fromEventId

      public long fromEventId
      Identifier of an event from which to return results. Use 0 to get results from the latest events.
    • limit

      public int limit
      The maximum number of events to return; up to 100.
    • filters

      public TdApi.ChatEventLogFilters filters
      The types of events to return; pass null to get chat events of all types.
    • userIds

      public long[] userIds
      User identifiers by which to filter events. By default, events relating to all users will be returned.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • GetChatEventLog

      public GetChatEventLog()
      Returns a list of service actions taken by chat members and administrators in the last 48 hours. Available only for supergroups and channels. Requires administrator rights. Returns results in reverse chronological order (i.e., in order of decreasing eventId). Returns ChatEvents
    • GetChatEventLog

      public GetChatEventLog(long chatId, String query, long fromEventId, int limit, TdApi.ChatEventLogFilters filters, long[] userIds)
      Returns a list of service actions taken by chat members and administrators in the last 48 hours. Available only for supergroups and channels. Requires administrator rights. Returns results in reverse chronological order (i.e., in order of decreasing eventId). Returns ChatEvents
      Parameters:
      chatId - long Chat identifier.
      query - String Search query by which to filter events.
      fromEventId - long Identifier of an event from which to return results. Use 0 to get results from the latest events.
      limit - int The maximum number of events to return; up to 100.
      filters - ChatEventLogFilters The types of events to return; pass null to get chat events of all types.
      userIds - long[] User identifiers by which to filter events. By default, events relating to all users will be returned.
    • GetChatEventLog

      public GetChatEventLog(DataInput input) throws IOException
      Returns a list of service actions taken by chat members and administrators in the last 48 hours. Available only for supergroups and channels. Requires administrator rights. Returns results in reverse chronological order (i.e., in order of decreasing eventId). Returns ChatEvents
      Throws:
      IOException
  • Method Details