--- 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|| |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'} ```