Skip to main content

updateServiceNotification

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).

type tg.UpdateServiceNotification struct { /* ... */ }

Implements Update.

Fields

NameTypeRequiredDescription
PopupboolIf set, the message must be displayed in a popup.
InvertMediaboolIf set, any eventual webpage preview will be shown on top of the message instead of at the bottom.
InboxDateintWhen was the notification receivedThe message must also be stored locally as part of the message history with the user id 777000 (Telegram Notifications).
TypestringyesString, 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).
MessagestringyesMessage text
MediaMessageMediaClassyesMedia content (optional)
Entities[]MessageEntityClassyesMessage entities for styled text

References