2019-06-23 13:07:51 +02:00
|
|
|
---
|
|
|
|
title: help.deepLinkInfo
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Deep linking info
|
2019-06-23 13:07:51 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: help.deepLinkInfo
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Deep linking info
|
2019-06-23 13:07:51 +02:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|update\_app|[Bool](../types/Bool.md) | Optional|An update of the app is required to parse this link|
|
|
|
|
|message|[string](../types/string.md) | Yes|Message to show to the user|
|
2019-06-23 13:07:51 +02:00
|
|
|
|entities|Array of [MessageEntity](../types/MessageEntity.md) | Optional|Entities|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [help\_DeepLinkInfo](../types/help_DeepLinkInfo.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$help_deepLinkInfo = ['_' => 'help.deepLinkInfo', 'update_app' => Bool, 'message' => 'string', 'entities' => [MessageEntity, MessageEntity]];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
help_deepLinkInfo={_='help.deepLinkInfo', update_app=Bool, message='string', entities={MessageEntity}}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|