ChannelParticipantLeft

class pyrogram.raw.types.ChannelParticipantLeft

A participant that left the channel/supergroup

Constructor of ChannelParticipant.

Details:
  • Layer: 223

  • ID: 1B03F006

Parameters:

peer (Peer) – The peer that left

TL Schema

channelParticipantLeft#1b03f006
peer:Peer

= ChannelParticipant

Parameter Tree

ChannelParticipantLeft
└── peerPeer
├── PeerUser
│ └── user_idlong
├── PeerChat
│ └── chat_idlong
└── PeerChannel
└── channel_idlong

Example

ChannelParticipantLeft(
    peer=PeerUser(user_id=0),
)