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

1.2 KiB

title description image
webDocument Web document https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: webDocument

Back to constructors index

Web document

Attributes:

Name Type Required Description
url string Yes URL
access_hash long Yes Access hash
size int Yes Size
mime_type string Yes Mime type
attributes Array of DocumentAttribute Yes Attributes

Type: WebDocument

Example:

$webDocument = ['_' => 'webDocument', 'url' => 'string', 'access_hash' => long, 'size' => int, 'mime_type' => 'string', 'attributes' => [DocumentAttribute, DocumentAttribute]];

PWRTelegram json-encoded version:

{"_": "webDocument", "url": "string", "access_hash": long, "size": int, "mime_type": "string", "attributes": [DocumentAttribute]}

Or, if you're into Lua:

webDocument={_='webDocument', url='string', access_hash=long, size=int, mime_type='string', attributes={DocumentAttribute}}