1.1 KiB
1.1 KiB
title | description | image |
---|---|---|
webDocument | Remote document | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: webDocument
Remote document
Attributes:
Name | Type | Required | Description |
---|---|---|---|
url | string | Yes | Document URL |
access_hash | long | Yes | Access hash |
size | int | Yes | File size |
mime_type | string | Yes | MIME type |
attributes | Array of DocumentAttribute | Yes | Attributes |
dc_id | int | Yes | DC ID |
Type: WebDocument
Example:
$webDocument = ['_' => 'webDocument', 'url' => 'string', 'access_hash' => long, 'size' => int, 'mime_type' => 'string', 'attributes' => [DocumentAttribute, 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}