ChatParticipant
- class pyrogram.raw.base.ChatParticipant
Details of a group member.
- Constructors:
This base type has 3 constructors available.
Group member.
Chat admin
Represents the creator of the group
TL Schema
chatParticipant#38e79fde
flags:#
user_id:long
inviter_id:long
date:int
rank:flags.0?string
= ChatParticipant
Parameter Tree
ChatParticipant
├── user_id →
long├── inviter_id →
long├── date →
int└── rank →
string (optional)Example
ChatParticipant(
user_id=0,
inviter_id=0,
date=0,
rank="text",
)