MadelineProtoDocs/old_docs/API_docs_v27/constructors/inputPeerNotifySettings.md

42 lines
1020 B
Markdown

---
title: inputPeerNotifySettings
description: Peer notify settings
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputPeerNotifySettings
[Back to constructors index](index.md)
Peer notify settings
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|mute\_until|[int](../types/int.md) | Yes|Mute until|
|sound|[string](../types/string.md) | Yes|Sound|
|show\_previews|[Bool](../types/Bool.md) | Yes|Show previews?|
|events\_mask|[int](../types/int.md) | Yes|Events mask|
### Type: [InputPeerNotifySettings](../types/InputPeerNotifySettings.md)
### Example:
```php
$inputPeerNotifySettings = ['_' => 'inputPeerNotifySettings', 'mute_until' => int, 'sound' => 'string', 'show_previews' => Bool, 'events_mask' => int];
```
Or, if you're into Lua:
```lua
inputPeerNotifySettings={_='inputPeerNotifySettings', mute_until=int, sound='string', show_previews=Bool, events_mask=int}
```