Sha256: 830eab6ab24679afecf2a98156d1bb462520a9b964031672476aad7fff16f6ce

Contents?: true

Size: 537 Bytes

Versions: 3

Compression:

Stored size: 537 Bytes

Contents

module TD::Types
  # The number of online group members has changed.
  # This update with non-zero count is sent only for currently opened chats.
  # There is no guarantee that it will be sent just after the count has changed.
  #
  # @attr chat_id [Integer] Identifier of the chat.
  # @attr online_member_count [Integer] New number of online members in the chat, or 0 if unknown.
  class Update::ChatOnlineMemberCount < Update
    attribute :chat_id, TD::Types::Integer
    attribute :online_member_count, TD::Types::Integer
  end
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
tdlib-schema-1.7.0.1 lib/tdlib/types/update/chat_online_member_count.rb
tdlib-ruby-2.2.0 lib/tdlib/types/update/chat_online_member_count.rb
tdlib-ruby-2.1.0 lib/tdlib/types/update/chat_online_member_count.rb