Sha256: 7b77442ac81733a1ca7a6d354108de7146cc3dfde7156326e0575e084bedb597

Contents?: true

Size: 426 Bytes

Versions: 3

Compression:

Stored size: 426 Bytes

Contents

module TD::Types
  # User activity in the chat has changed.
  #
  # @attr chat_id [Integer] Chat identifier.
  # @attr user_id [Integer] Identifier of a user performing an action.
  # @attr action [TD::Types::ChatAction] The action description.
  class Update::UserChatAction < Update
    attribute :chat_id, TD::Types::Integer
    attribute :user_id, TD::Types::Integer
    attribute :action, TD::Types::ChatAction
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
tdlib-ruby-2.2.0 lib/tdlib/types/update/user_chat_action.rb
tdlib-ruby-2.1.0 lib/tdlib/types/update/user_chat_action.rb
tdlib-ruby-2.0.0 lib/tdlib/types/update/user_chat_action.rb