Class: TD::Types::Update::ChatOnlineMemberCount
- Inherits:
-
TD::Types::Update
- Object
- Dry::Struct
- Base
- TD::Types::Update
- TD::Types::Update::ChatOnlineMemberCount
- Defined in:
- lib/tdlib/types/update/chat_online_member_count.rb
Overview
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.
Instance Attribute Summary collapse
-
#chat_id ⇒ Integer
Identifier of the chat.
-
#online_member_count ⇒ Integer
New number of online members in the chat, or 0 if unknown.
Method Summary
Methods inherited from Base
Instance Attribute Details
#chat_id ⇒ Integer
Identifier of the chat.
8 9 10 |
# File 'lib/tdlib/types/update/chat_online_member_count.rb', line 8 def chat_id @chat_id end |
#online_member_count ⇒ Integer
New number of online members in the chat, or 0 if unknown.
8 9 10 |
# File 'lib/tdlib/types/update/chat_online_member_count.rb', line 8 def online_member_count @online_member_count end |