MadelineProto/old_docs/API_docs_v33/constructors/peerNotifySettings.md

39 lines
836 B
Markdown
Raw Normal View History

---
title: peerNotifySettings
description: peerNotifySettings attributes, type and example
---
## Constructor: peerNotifySettings
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|mute\_until|[int](../types/int.md) | Yes|
|sound|[string](../types/string.md) | Yes|
|show\_previews|[Bool](../types/Bool.md) | Yes|
|events\_mask|[int](../types/int.md) | Yes|
### Type: [PeerNotifySettings](../types/PeerNotifySettings.md)
### Example:
```
$peerNotifySettings = ['_' => 'peerNotifySettings', 'mute_until' => int, 'sound' => string, 'show_previews' => Bool, 'events_mask' => int, ];
```
Or, if you're into Lua:
```
peerNotifySettings={_='peerNotifySettings', mute_until=int, sound=string, show_previews=Bool, events_mask=int, }
```