MadelineProtoDocs/old_docs/API_docs_v104/constructors/help_appUpdate.md
2019-08-15 20:30:02 +02:00

45 lines
1.2 KiB
Markdown

---
title: help.appUpdate
description: App update
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: help.appUpdate
[Back to constructors index](index.md)
App update
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|can\_not\_skip|[Bool](../types/Bool.md) | Optional|Whether the update is skippable|
|id|[int](../types/int.md) | Yes|ID|
|version|[string](../types/string.md) | Yes|Version|
|text|[string](../types/string.md) | Yes|Text|
|entities|Array of [MessageEntity](../types/MessageEntity.md) | Yes|Entities|
|document|[Document](../types/Document.md) | Optional|Document|
|url|[string](../types/string.md) | Optional|URL|
### Type: [help\_AppUpdate](../types/help_AppUpdate.md)
### Example:
```php
$help_appUpdate = ['_' => 'help.appUpdate', 'can_not_skip' => Bool, 'id' => int, 'version' => 'string', 'text' => 'string', 'entities' => [MessageEntity, MessageEntity], 'document' => Document, 'url' => 'string'];
```
Or, if you're into Lua:
```lua
help_appUpdate={_='help.appUpdate', can_not_skip=Bool, id=int, version='string', text='string', entities={MessageEntity}, document=Document, url='string'}
```