ChannelAdminLogEventActionParticipantJoinByInvite

class pyrogram.raw.types.ChannelAdminLogEventActionParticipantJoinByInvite

A user joined the supergroup/channel using a specific invite link

Constructor of ChannelAdminLogEventAction.

Details:
  • Layer: 227

  • ID: FE9FC158

Parameters:
  • invite (ExportedChatInvite) – The invite link used to join the supergroup/channel

  • via_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)
│ ├── period → int
│ └── amount → long

Example

ChannelAdminLogEventActionParticipantJoinByInvite(
    invite=ChatInviteExported(
        link="text",
        admin_id=0,
        date=0
    ),
)