MadelineProto/old_docs/API_docs_v65/constructors/webDocument.md
Daniil Gentili 1eb2fc0b4f fix
2017-04-21 13:27:04 +02:00

961 B

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, ];

Or, if you're into Lua:

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