MadelineProto/old_docs/API_docs_v65/constructors/updateServiceNotification.md
2017-07-23 16:11:02 +02:00

1.3 KiB

title description
updateServiceNotification updateServiceNotification attributes, type and example

Constructor: updateServiceNotification

Back to constructors index

Attributes:

Name Type Required
popup Bool Optional
inbox_date int Optional
type string Yes
message string Yes
media MessageMedia Yes
entities Array of MessageEntity Yes

Type: Update

Example:

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

PWRTelegram json-encoded version:

{"_":"updateServiceNotification","popup":"Bool","inbox_date":"int","type":"string","message":"string","media":"MessageMedia","entities":["MessageEntity"]}

Or, if you're into Lua:

updateServiceNotification={_='updateServiceNotification', popup=Bool, inbox_date=int, type=string, message=string, media=MessageMedia, entities={MessageEntity}, }