MadelineProtoDocs/old_docs/API_docs_v105/constructors/inputPeerNotifySettings.md

42 lines
1.0 KiB
Markdown
Raw Normal View History

2019-09-13 17:13:55 +02:00
---
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 |
|----------|---------------|----------|-------------|
|show\_previews|[Bool](../types/Bool.md) | Optional|Show previews?|
|silent|[Bool](../types/Bool.md) | Optional|Silent?|
|mute\_until|[int](../types/int.md) | Optional|Mute until|
|sound|[string](../types/string.md) | Optional|Sound|
### Type: [InputPeerNotifySettings](../types/InputPeerNotifySettings.md)
### Example:
```php
$inputPeerNotifySettings = ['_' => 'inputPeerNotifySettings', 'show_previews' => Bool, 'silent' => Bool, 'mute_until' => int, 'sound' => 'string'];
```
Or, if you're into Lua:
```lua
inputPeerNotifySettings={_='inputPeerNotifySettings', show_previews=Bool, silent=Bool, mute_until=int, sound='string'}
```