Package org.drinkless.tdlib
Class TdApi.ChatEvent
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.ChatEvent
-
- Enclosing class:
- TdApi
public static class TdApi.ChatEvent extends TdApi.Object
Represents a chat event.
-
-
Field Summary
Fields Modifier and Type Field Description TdApi.ChatEventActionactionThe action.static intCONSTRUCTORIdentifier uniquely determining type of the object.intdatePoint in time (Unix timestamp) when the event happened.longidChat event identifier.TdApi.MessageSendermemberIdIdentifier of the user or chat who performed the action.
-
Constructor Summary
Constructors Constructor Description ChatEvent()Represents a chat event.ChatEvent(long id, int date, TdApi.MessageSender memberId, TdApi.ChatEventAction action)Represents a chat event.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
-
-
-
Field Detail
-
id
public long id
Chat event identifier.
-
date
public int date
Point in time (Unix timestamp) when the event happened.
-
memberId
public TdApi.MessageSender memberId
Identifier of the user or chat who performed the action.
-
action
public TdApi.ChatEventAction action
The action.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ChatEvent
public ChatEvent()
Represents a chat event.
-
ChatEvent
public ChatEvent(long id, int date, TdApi.MessageSender memberId, TdApi.ChatEventAction action)Represents a chat event.- Parameters:
id- Chat event identifier.date- Point in time (Unix timestamp) when the event happened.memberId- Identifier of the user or chat who performed the action.action- The action.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-