MadelineProtoDocs/docs/API_docs/constructors/updatePrivacy.md

40 lines
811 B
Markdown

---
title: updatePrivacy
description: Privacy rules were changed
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: updatePrivacy
[Back to constructors index](index.md)
Privacy rules were changed
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|key|[PrivacyKey](../types/PrivacyKey.md) | Yes|Peers to which the privacy rules apply|
|rules|Array of [PrivacyRule](../types/PrivacyRule.md) | Yes|Rules|
### Type: [Update](../types/Update.md)
### Example:
```php
$updatePrivacy = ['_' => 'updatePrivacy', 'key' => PrivacyKey, 'rules' => [PrivacyRule, PrivacyRule]];
```
Or, if you're into Lua:
```lua
updatePrivacy={_='updatePrivacy', key=PrivacyKey, rules={PrivacyRule}}
```