ChatParticipantsForbidden

class pyrogram.raw.types.ChatParticipantsForbidden

Info on members is unavailable

Constructor of ChatParticipants.

Details:
  • Layer: 227

  • 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_id → long
└── self_participant → ChatParticipant (optional)
├── ChatParticipant
│ ├── user_id → long
│ ├── inviter_id → long
│ ├── date → int
│ └── rank → string (optional)
│ ├── user_id → long
│ └── rank → string (optional)
├── user_id → long
├── inviter_id → long
├── date → int
└── rank → string (optional)

Example

ChatParticipantsForbidden(
    chat_id=0,
)