Sha256: 84b636669b7c0eec98b1403f46e575fcd90cb71c5d873a781c85b1ff2065447c
Contents?: true
Size: 594 Bytes
Versions: 2
Compression:
Stored size: 594 Bytes
Contents
module TD::Types # Represents a chat event. # # @attr id [Integer] Chat event identifier. # @attr date [Integer] Point in time (Unix timestamp) when the event happened. # @attr user_id [Integer] Identifier of the user who performed the action that triggered the event. # @attr action [TD::Types::ChatEventAction] Action performed by the user. class ChatEvent < Base attribute :id, TD::Types::Coercible::Integer attribute :date, TD::Types::Coercible::Integer attribute :user_id, TD::Types::Coercible::Integer attribute :action, TD::Types::ChatEventAction end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tdlib-schema-1.7.0.3 | lib/tdlib/types/chat_event.rb |
tdlib-schema-1.7.0.2 | lib/tdlib/types/chat_event.rb |