MadelineProtoDocs/old_docs/API_docs_v81/constructors/inputPeerNotifySettings.md
2018-07-12 20:24:55 +02:00

1.1 KiB

title description image
inputPeerNotifySettings inputPeerNotifySettings attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: inputPeerNotifySettings

Back to constructors index

Attributes:

Name Type Required
show_previews Bool Optional
silent Bool Optional
mute_until int Optional
sound string Optional

Type: InputPeerNotifySettings

Example:

$inputPeerNotifySettings = ['_' => 'inputPeerNotifySettings', 'show_previews' => Bool, 'silent' => Bool, 'mute_until' => int, 'sound' => 'string'];

PWRTelegram json-encoded version:

{"_": "inputPeerNotifySettings", "show_previews": Bool, "silent": Bool, "mute_until": int, "sound": "string"}

Or, if you're into Lua:

inputPeerNotifySettings={_='inputPeerNotifySettings', show_previews=Bool, silent=Bool, mute_until=int, sound='string'}