1.2 KiB
1.2 KiB
title | description |
---|---|
webDocument | webDocument attributes, type and example |
Constructor: webDocument
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}