ChatParticipants
- class pyrogram.raw.types.ChatParticipants
Group members.
Constructor of
ChatParticipants.- Details:
Layer:
223ID:
3CBC93F8
- Parameters:
chat_id (
int64-bit) – Group identifierparticipants (List of
ChatParticipant) – List of group membersversion (
int32-bit) – Group version number
TL Schema
chatParticipants#3cbc93f8
chat_id:long
participants:Vector<ChatParticipant>
version:int
= ChatParticipants
Parameter Tree
ChatParticipants
├── chat_id →
long├── participants →
Vector < ChatParticipant >│ ├──
ChatParticipant│ │ ├── user_id →
long│ │ ├── inviter_id →
long│ │ ├── date →
int│ │ └── rank →
string (optional)│ ├──
ChatParticipantCreator│ │ ├── user_id →
long│ │ └── rank →
string (optional)│ └──
ChatParticipantAdmin│ ├── user_id →
long│ ├── inviter_id →
long│ ├── date →
int│ └── rank →
string (optional)└── version →
intExample
ChatParticipants(
chat_id=0,
participants=[
ChatParticipant(
user_id=0,
inviter_id=0,
date=0
)
],
version=0,
)