ChannelParticipant
- class pyrogram.raw.base.ChannelParticipant
Channel participant
- Constructors:
This base type has 6 constructors available.
Channel/supergroup participant
Admin
Banned/kicked user
Channel/supergroup creator
A participant that left the channel/supergroup
Myself
TL Schema
channelParticipant#1bd54456
flags:#
user_id:long
date:int
subscription_until_date:flags.0?int
rank:flags.2?string
= ChannelParticipant
Parameter Tree
ChannelParticipant
├── user_id →
long├── date →
int├── subscription_until_date →
int (optional)└── rank →
string (optional)Example
ChannelParticipant(
user_id=0,
date=0,
subscription_until_date=0,
rank="text",
)