MadelineProtoDocs/docs/API_docs/constructors/webDocument.md
Sean 4baac3178e Add Syntax Highlight for Markdown
Add PHP, Lua language tag to Code area
2018-10-18 00:30:20 +08:00

1.2 KiB

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

Constructor: webDocument

Back to constructors index

Attributes:

Name Type Required
url string Yes
access_hash long Yes
size int Yes
mime_type string Yes
attributes Array of DocumentAttribute Yes

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