MadelineProtoDocs/docs/API_docs/constructors/help_appUpdate.md
Daniil Gentili e5a1324684 docufix
2018-04-04 23:19:57 +00:00

47 lines
981 B
Markdown

---
title: help.appUpdate
description: help_appUpdate attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: help.appUpdate
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|id|[int](../types/int.md) | Yes|
|critical|[Bool](../types/Bool.md) | Yes|
|url|[string](../types/string.md) | Yes|
|text|[string](../types/string.md) | Yes|
### Type: [help\_AppUpdate](../types/help_AppUpdate.md)
### Example:
```
$help_appUpdate = ['_' => 'help.appUpdate', 'id' => int, 'critical' => Bool, 'url' => 'string', 'text' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "help.appUpdate", "id": int, "critical": Bool, "url": "string", "text": "string"}
```
Or, if you're into Lua:
```
help_appUpdate={_='help.appUpdate', id=int, critical=Bool, url='string', text='string'}
```