MadelineProto/old_docs/API_docs_v40/constructors/help_appUpdate.md

46 lines
899 B
Markdown
Raw Normal View History

---
2017-01-19 23:02:27 +01:00
title: help.appUpdate
description: help_appUpdate attributes, type and example
---
2017-01-19 23:02:27 +01:00
## 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:
```
2017-01-19 23:02:27 +01:00
$help_appUpdate = ['_' => 'help.appUpdate', 'id' => int, 'critical' => Bool, 'url' => string, 'text' => string, ];
```
2017-07-23 16:11:02 +02:00
[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, }
```