MadelineProtoDocs/docs/API_docs/constructors/help_deepLinkInfo.md

1.0 KiB

title description image
help.deepLinkInfo help_deepLinkInfo attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: help.deepLinkInfo

Back to constructors index

Attributes:

Name Type Required
update_app Bool Optional
message string Yes
entities Array of MessageEntity Optional

Type: help_DeepLinkInfo

Example:

$help_deepLinkInfo = ['_' => 'help.deepLinkInfo', 'update_app' => Bool, 'message' => 'string', 'entities' => [MessageEntity, MessageEntity]];

PWRTelegram json-encoded version:

{"_": "help.deepLinkInfo", "update_app": Bool, "message": "string", "entities": [MessageEntity]}

Or, if you're into Lua:

help_deepLinkInfo={_='help.deepLinkInfo', update_app=Bool, message='string', entities={MessageEntity}}