mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2026-01-03 14:04:51 +00:00
Document ChatMembers
This commit is contained in:
parent
e9cba4609a
commit
f4175b041c
1 changed files with 9 additions and 1 deletions
|
|
@ -20,7 +20,15 @@ from pyrogram.api.core import Object
|
||||||
|
|
||||||
|
|
||||||
class ChatMembers(Object):
|
class ChatMembers(Object):
|
||||||
# TODO: Docstrings
|
"""This object contains information about the members list of a chat.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
total_count (``int``):
|
||||||
|
Total number of members the chat has.
|
||||||
|
|
||||||
|
chat_members (List of :obj:`ChatMember <pyrogram.ChatMember>`):
|
||||||
|
Requested chat members.
|
||||||
|
"""
|
||||||
|
|
||||||
ID = 0xb0700030
|
ID = 0xb0700030
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue