MadelineProtoDocs/docs/API_docs/constructors/updatePrivacy.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

889 B

title description image
updatePrivacy Update privacy https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: updatePrivacy

Back to constructors index

Update privacy

Attributes:

Name Type Required Description
key PrivacyKey Yes Key
rules Array of PrivacyRule Yes Rules

Type: Update

Example:

$updatePrivacy = ['_' => 'updatePrivacy', 'key' => PrivacyKey, 'rules' => [PrivacyRule, PrivacyRule]];

PWRTelegram json-encoded version:

{"_": "updatePrivacy", "key": PrivacyKey, "rules": [PrivacyRule]}

Or, if you're into Lua:

updatePrivacy={_='updatePrivacy', key=PrivacyKey, rules={PrivacyRule}}