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

46 lines
1.0 KiB
Markdown

---
title: updateServiceNotification
description: updateServiceNotification attributes, type and example
---
## Constructor: updateServiceNotification
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|type|[string](../types/string.md) | Yes|
|message|[string](../types/string.md) | Yes|
|media|[MessageMedia](../types/MessageMedia.md) | Yes|
|popup|[Bool](../types/Bool.md) | Yes|
### Type: [Update](../types/Update.md)
### Example:
```
$updateServiceNotification = ['_' => 'updateServiceNotification', 'type' => 'string', 'message' => 'string', 'media' => MessageMedia, 'popup' => Bool];
```
[PWRTelegram](https://pwrtelegram.xyz) 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}
```