Class TdApi.ChatEventLogFilters

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

public static class TdApi.ChatEventLogFilters
extends TdApi.Object
Represents a set of filters used to obtain a chat event log.
  • Field Summary

    Fields
    Modifier and Type Field Description
    static int CONSTRUCTOR  
    boolean infoChanges
    True, if changes in chat information should be returned.
    boolean memberInvites
    True, if invited member events should be returned.
    boolean memberJoins
    True, if members joining events should be returned.
    boolean memberLeaves
    True, if members leaving events should be returned.
    boolean memberPromotions
    True, if member promotion/demotion events should be returned.
    boolean memberRestrictions
    True, if member restricted/unrestricted/banned/unbanned events should be returned.
    boolean messageDeletions
    True, if message deletions should be returned.
    boolean messageEdits
    True, if message edits should be returned.
    boolean messagePins
    True, if pin/unpin events should be returned.
    boolean settingChanges
    True, if changes in chat settings should be returned.
    boolean voiceChatChanges
    True, if voice chat actions should be returned.
  • Constructor Summary

    Constructors
    Constructor Description
    ChatEventLogFilters()
    Represents a set of filters used to obtain a chat event log.
    ChatEventLogFilters​(boolean messageEdits, boolean messageDeletions, boolean messagePins, boolean memberJoins, boolean memberLeaves, boolean memberInvites, boolean memberPromotions, boolean memberRestrictions, boolean infoChanges, boolean settingChanges, boolean voiceChatChanges)
    Represents a set of filters used to obtain a chat event log.
    ChatEventLogFilters​(DataInput input)  
  • Method Summary

    Modifier and Type Method Description
    boolean equals​(Object o)  
    int getConstructor()  
    int hashCode()  
    void serialize​(DataOutputStream output)  

    Methods inherited from class it.tdlight.jni.TdApi.Object

    serialize, toString

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • messageEdits

      public boolean messageEdits
      True, if message edits should be returned.
    • messageDeletions

      public boolean messageDeletions
      True, if message deletions should be returned.
    • messagePins

      public boolean messagePins
      True, if pin/unpin events should be returned.
    • memberJoins

      public boolean memberJoins
      True, if members joining events should be returned.
    • memberLeaves

      public boolean memberLeaves
      True, if members leaving events should be returned.
    • memberInvites

      public boolean memberInvites
      True, if invited member events should be returned.
    • memberPromotions

      public boolean memberPromotions
      True, if member promotion/demotion events should be returned.
    • memberRestrictions

      public boolean memberRestrictions
      True, if member restricted/unrestricted/banned/unbanned events should be returned.
    • infoChanges

      public boolean infoChanges
      True, if changes in chat information should be returned.
    • settingChanges

      public boolean settingChanges
      True, if changes in chat settings should be returned.
    • voiceChatChanges

      public boolean voiceChatChanges
      True, if voice chat actions should be returned.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
      Constant Field Values
  • Constructor Details

    • ChatEventLogFilters

      public ChatEventLogFilters()
      Represents a set of filters used to obtain a chat event log.
    • ChatEventLogFilters

      public ChatEventLogFilters​(boolean messageEdits, boolean messageDeletions, boolean messagePins, boolean memberJoins, boolean memberLeaves, boolean memberInvites, boolean memberPromotions, boolean memberRestrictions, boolean infoChanges, boolean settingChanges, boolean voiceChatChanges)
      Represents a set of filters used to obtain a chat event log.
      Parameters:
      messageEdits - boolean True, if message edits should be returned.
      messageDeletions - boolean True, if message deletions should be returned.
      messagePins - boolean True, if pin/unpin events should be returned.
      memberJoins - boolean True, if members joining events should be returned.
      memberLeaves - boolean True, if members leaving events should be returned.
      memberInvites - boolean True, if invited member events should be returned.
      memberPromotions - boolean True, if member promotion/demotion events should be returned.
      memberRestrictions - boolean True, if member restricted/unrestricted/banned/unbanned events should be returned.
      infoChanges - boolean True, if changes in chat information should be returned.
      settingChanges - boolean True, if changes in chat settings should be returned.
      voiceChatChanges - boolean True, if voice chat actions should be returned.
    • ChatEventLogFilters

      public ChatEventLogFilters​(DataInput input) throws IOException
      Throws:
      IOException
  • Method Details