ChatParticipant

class pyrogram.raw.base.ChatParticipant

Details of a group member.

Constructors:

This base type has 3 constructors available.

ChatParticipant

Group member.

ChatParticipantAdmin

Chat admin

ChatParticipantCreator

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_idlong
├── inviter_idlong
├── dateint
└── rankstring (optional)

Example

ChatParticipant(
    user_id=0,
    inviter_id=0,
    date=0,
    rank="text",
)