1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-15 09:56:54 +01:00
MadelineProto/docs/TD_docs/constructors/privacyRuleDisallowUsers.md

692 B

title description
privacyRuleDisallowUsers Rule to disallow all specified users

Constructor: privacyRuleDisallowUsers

Back to constructors index

Rule to disallow all specified users

Attributes:

Name Type Required Description
user_ids Array of int Yes User identifiers

Type: PrivacyRule

Example:

$privacyRuleDisallowUsers = ['_' => 'privacyRuleDisallowUsers', 'user_ids' => [int], ];

Or, if you're into Lua:

privacyRuleDisallowUsers={_='privacyRuleDisallowUsers', user_ids={int}, }