Class: TD::Types::ChatEvent
- Defined in:
- lib/tdlib/types/chat_event.rb
Overview
Represents a chat event.
Instance Attribute Summary collapse
-
#action ⇒ TD::Types::ChatEventAction
The action.
-
#date ⇒ Integer
Point in time (Unix timestamp) when the event happened.
-
#id ⇒ Integer
Chat event identifier.
-
#member_id ⇒ TD::Types::MessageSender
Identifier of the user or chat who performed the action.
Method Summary
Methods inherited from Base
Instance Attribute Details
#action ⇒ TD::Types::ChatEventAction
The action.
8 9 10 |
# File 'lib/tdlib/types/chat_event.rb', line 8 def action @action end |
#date ⇒ Integer
Point in time (Unix timestamp) when the event happened.
8 9 10 |
# File 'lib/tdlib/types/chat_event.rb', line 8 def date @date end |
#id ⇒ Integer
Chat event identifier.
8 9 10 |
# File 'lib/tdlib/types/chat_event.rb', line 8 def id @id end |
#member_id ⇒ TD::Types::MessageSender
Identifier of the user or chat who performed the action.
8 9 10 |
# File 'lib/tdlib/types/chat_event.rb', line 8 def member_id @member_id end |