mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-15 18:46:56 +01:00
781 B
781 B
title | description |
---|---|
privacyRuleAllowUsers | Rule to allow specified users |
Constructor: privacyRuleAllowUsers
Rule to allow specified users
Attributes:
Name | Type | Required | Description |
---|---|---|---|
user_ids | Array of int | Yes | User identifiers |
Type: PrivacyRule
Example:
$privacyRuleAllowUsers = ['_' => 'privacyRuleAllowUsers', 'user_ids' => [int], ];
PWRTelegram json-encoded version:
{"_":"privacyRuleAllowUsers","user_ids":["int"]}
Or, if you're into Lua:
privacyRuleAllowUsers={_='privacyRuleAllowUsers', user_ids={int}, }