ChannelAdminLogEventActionParticipantJoinByRequest

class pyrogram.raw.types.ChannelAdminLogEventActionParticipantJoinByRequest

A new member was accepted to the chat by an admin

Constructor of ChannelAdminLogEventAction.

Details:
  • Layer: 223

  • ID: AFB6144A

Parameters:
  • invite (ExportedChatInvite) – The invite link that was used to join the chat

  • approved_by (int 64-bit) – ID of the admin that approved the invite

TL Schema

channelAdminLogEventActionParticipantJoinByRequest#afb6144a
invite:ExportedChatInvite
approved_by:long

= ChannelAdminLogEventAction

Parameter Tree

ChannelAdminLogEventActionParticipantJoinByRequest
├── inviteExportedChatInvite
│ ├── ChatInviteExported
│ │ ├── revokedtrue (optional)
│ │ ├── permanenttrue (optional)
│ │ ├── request_neededtrue (optional)
│ │ ├── linkstring
│ │ ├── admin_idlong
│ │ ├── dateint
│ │ ├── start_dateint (optional)
│ │ ├── expire_dateint (optional)
│ │ ├── usage_limitint (optional)
│ │ ├── usageint (optional)
│ │ ├── requestedint (optional)
│ │ ├── subscription_expiredint (optional)
│ │ ├── titlestring (optional)
│ │ └── subscription_pricingStarsSubscriptionPricing (optional)
│ │ └── StarsSubscriptionPricing
│ │ ├── periodint
│ │ └── amountlong
└── approved_bylong

Example

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