MadelineProtoDocs/old_docs/API_docs_v14/constructors/updateServiceNotification.md

1.7 KiB

title description image
updateServiceNotification A service message for the user. https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: updateServiceNotification

Back to constructors index

A service message for the user.

The app must show the message to the user upon receiving this update. In case the popup parameter was passed, the text message must be displayed in a popup alert immediately upon receipt. It is recommended to handle the text as you would an ordinary message in terms of highlighting links, etc. The message must also be stored locally as part of the message history with the user id 777000 (Telegram Notifications).

Attributes:

Name Type Required Description
type string Yes String, identical in format and contents to the type field in API errors. Describes type of service message. It is acceptable to ignore repeated messages of the same type within a short period of time (15 minutes).
message string Yes Message text
media MessageMedia Optional Media content (optional)
popup Bool Yes

Type: Update

Example:

$updateServiceNotification = ['_' => '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}