ChannelAdminLogEventActionParticipantJoinByInvite
- class pyrogram.raw.types.ChannelAdminLogEventActionParticipantJoinByInvite
A user joined the supergroup/channel using a specific invite link
Constructor of
ChannelAdminLogEventAction.- Details:
Layer:
223ID:
FE9FC158
- Parameters:
invite (
ExportedChatInvite) – The invite link used to join the supergroup/channelvia_chatlist (
bool, optional) – The participant joined by importing a chat folder deep link ».
TL Schema
channelAdminLogEventActionParticipantJoinByInvite#fe9fc158
flags:#
via_chatlist:flags.0?true
invite:ExportedChatInvite
= ChannelAdminLogEventAction
Parameter Tree
ChannelAdminLogEventActionParticipantJoinByInvite
├── via_chatlist →
true (optional)└── invite →
ExportedChatInvite│ ├── revoked →
true (optional)│ ├── permanent →
true (optional)│ ├── request_needed →
true (optional)│ ├── link →
string│ ├── admin_id →
long│ ├── date →
int│ ├── start_date →
int (optional)│ ├── expire_date →
int (optional)│ ├── usage_limit →
int (optional)│ ├── usage →
int (optional)│ ├── requested →
int (optional)│ ├── subscription_expired →
int (optional)│ ├── title →
string (optional)│ └── subscription_pricing →
StarsSubscriptionPricing (optional)│ └──
StarsSubscriptionPricing│ ├── period →
int│ └── amount →
longExample
ChannelAdminLogEventActionParticipantJoinByInvite(
invite=ChatInviteExported(
link="text",
admin_id=0,
date=0
),
)