InputPrivacyValueDisallowChatParticipants

class pyrogram.raw.types.InputPrivacyValueDisallowChatParticipants

Disallow only participants of certain chats

Constructor of InputPrivacyRule.

Details:
  • Layer: 223

  • ID: E94F0F86

Parameters:

chats (List of int 64-bit) – Disallowed chat 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

inputPrivacyValueDisallowChatParticipants#e94f0f86
chats:Vector<long>

= InputPrivacyRule

Parameter Tree

InputPrivacyValueDisallowChatParticipants
└── chatsVector < long >

Example

InputPrivacyValueDisallowChatParticipants(
    chats=[0],
)