MadelineProtoDocs/docs/API_docs/constructors/webDocumentNoProxy.md

1.1 KiB

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

Constructor: webDocumentNoProxy

Back to constructors index

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