ChannelParticipant
- class pyrogram.raw.types.ChannelParticipant
Channel/supergroup participant
Constructor of
ChannelParticipant.- Details:
Layer:
223ID:
1BD54456
- Parameters:
user_id (
int64-bit) – Participant user IDdate (
int32-bit) – Date joinedsubscription_until_date (
int32-bit, optional) – If set, contains the expiration date of the current Telegram Star subscription period » for the specified participant.rank (
str, optional) – N/A
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,
)