MadelineProtoDocs/docs/API_docs/constructors/exportedMessageLink.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

910 B

title description image
exportedMessageLink Exported message link https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: exportedMessageLink

Back to constructors index

Exported message link

Attributes:

Name Type Required Description
link string Yes Link
html string Yes Html

Type: ExportedMessageLink

Example:

$exportedMessageLink = ['_' => 'exportedMessageLink', 'link' => 'string', 'html' => 'string'];

PWRTelegram json-encoded version:

{"_": "exportedMessageLink", "link": "string", "html": "string"}

Or, if you're into Lua:

exportedMessageLink={_='exportedMessageLink', link='string', html='string'}