MadelineProto/old_docs/API_docs_v68/constructors/webDocument.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

1.2 KiB

title description
webDocument webDocument attributes, type and example

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
dc_id int Yes

Type: WebDocument

Example:

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

PWRTelegram json-encoded version:

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

Or, if you're into Lua:

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