PrivacyValueDisallowChatParticipants

class pyrogram.raw.types.PrivacyValueDisallowChatParticipants

Disallow only participants of certain chats

Constructor of PrivacyRule.

Details:
  • Layer: 223

  • ID: 41C87565

Parameters:

chats (List of int 64-bit) – Disallowed chats IDs (either a chat or a supergroup ID, verbatim the way it is received in the constructor (i.e. unlike with bot API IDs, here group and supergroup IDs should be treated in the same way)).

TL Schema

privacyValueDisallowChatParticipants#41c87565
chats:Vector<long>

= PrivacyRule

Parameter Tree

PrivacyValueDisallowChatParticipants
└── chatsVector < long >

Example

PrivacyValueDisallowChatParticipants(
    chats=[0],
)