ChatParticipantsForbidden

class pyrogram.raw.types.ChatParticipantsForbidden

Info on members is unavailable

Constructor of ChatParticipants.

Details:
  • Layer: 223

  • ID: 8763D3E1

Parameters:
  • chat_id (int 64-bit) – Group ID

  • self_participant (ChatParticipant, optional) – Info about the group membership of the current user

TL Schema

chatParticipantsForbidden#8763d3e1
flags:#
chat_id:long
self_participant:flags.0?ChatParticipant

= ChatParticipants

Parameter Tree

ChatParticipantsForbidden
├── chat_idlong
└── self_participantChatParticipant (optional)
├── ChatParticipant
│ ├── user_idlong
│ ├── inviter_idlong
│ ├── dateint
│ └── rankstring (optional)
│ ├── user_idlong
│ └── rankstring (optional)
├── user_idlong
├── inviter_idlong
├── dateint
└── rankstring (optional)

Example

ChatParticipantsForbidden(
    chat_id=0,
)