Sha256: 1ba651431c508c16cdfe19c6bd78ad8cc641103145c83d6e09f31ce8f0aa6149
Contents?: true
Size: 561 Bytes
Versions: 4
Compression:
Stored size: 561 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::Integer attribute :date, TD::Types::Integer attribute :user_id, TD::Types::Integer attribute :action, TD::Types::ChatEventAction end end
Version data entries
4 entries across 4 versions & 2 rubygems