MadelineProtoDocs/old_docs/API_docs_v40/constructors/updateServiceNotification.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

1.1 KiB

title description image
updateServiceNotification Update service notification https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: updateServiceNotification

Back to constructors index

Update service notification

Attributes:

Name Type Required Description
type string Yes Type
message string Yes Message
media MessageMedia Optional Media
popup Bool Yes Popup?

Type: Update

Example:

$updateServiceNotification = ['_' => 'updateServiceNotification', 'type' => 'string', 'message' => 'string', 'media' => MessageMedia, 'popup' => Bool];

PWRTelegram json-encoded version:

{"_": "updateServiceNotification", "type": "string", "message": "string", "media": MessageMedia, "popup": Bool}

Or, if you're into Lua:

updateServiceNotification={_='updateServiceNotification', type='string', message='string', media=MessageMedia, popup=Bool}