MadelineProto/docs/TD_docs/constructors/privacyRuleDisallowUsers.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

813 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]];

PWRTelegram json-encoded version:

{"_": "privacyRuleDisallowUsers", "user_ids": [int]}

Or, if you're into Lua:

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