MadelineProto/old_docs/API_docs_v68/constructors/inputPeerNotifySettings.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

1.0 KiB

title description
inputPeerNotifySettings inputPeerNotifySettings attributes, type and example

Constructor: inputPeerNotifySettings

Back to constructors index

Attributes:

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

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'}