1.1 KiB
1.1 KiB
title | description | image |
---|---|---|
webDocumentNoProxy | webDocumentNoProxy attributes, type and example | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: webDocumentNoProxy
Attributes:
Name | Type | Required |
---|---|---|
url | string | Yes |
size | int | Yes |
mime_type | string | Yes |
attributes | Array of DocumentAttribute | Yes |
Type: WebDocument
Example:
$webDocumentNoProxy = ['_' => 'webDocumentNoProxy', 'url' => 'string', 'size' => int, 'mime_type' => 'string', 'attributes' => [DocumentAttribute, DocumentAttribute]];
PWRTelegram json-encoded version:
{"_": "webDocumentNoProxy", "url": "string", "size": int, "mime_type": "string", "attributes": [DocumentAttribute]}
Or, if you're into Lua:
webDocumentNoProxy={_='webDocumentNoProxy', url='string', size=int, mime_type='string', attributes={DocumentAttribute}}