MadelineProto/docs/TD_docs/constructors/updatePrivacy.md

39 lines
715 B
Markdown

---
title: updatePrivacy
description: Some privacy settings has changed
---
## Constructor: updatePrivacy
[Back to constructors index](index.md)
Some privacy settings has changed
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|key|[PrivacyKey](../types/PrivacyKey.md) | Yes|Privacy key|
|rules|[privacyRules](../types/privacyRules.md) | Yes|New privacy rules|
### Type: [Update](../types/Update.md)
### Example:
```
$updatePrivacy = ['_' => 'updatePrivacy', 'key' => PrivacyKey, 'rules' => privacyRules, ];
```
Or, if you're into Lua:
```
updatePrivacy={_='updatePrivacy', key=PrivacyKey, rules=privacyRules, }
```