1.4 KiB
1.4 KiB
title | description |
---|---|
document | document attributes, type and example |
Constructor: document
Attributes:
Name | Type | Required |
---|---|---|
id | long | Yes |
access_hash | long | Yes |
date | int | Yes |
mime_type | string | Yes |
size | int | Yes |
thumb | PhotoSize | Yes |
dc_id | int | Yes |
version | int | Yes |
attributes | Array of DocumentAttribute | Yes |
Type: Document
Example:
$document = ['_' => 'document', 'id' => long, 'access_hash' => long, 'date' => int, 'mime_type' => 'string', 'size' => int, 'thumb' => PhotoSize, 'dc_id' => int, 'version' => int, 'attributes' => [DocumentAttribute]];
PWRTelegram json-encoded version:
{"_": "document", "id": long, "access_hash": long, "date": int, "mime_type": "string", "size": int, "thumb": PhotoSize, "dc_id": int, "version": int, "attributes": [DocumentAttribute]}
Or, if you're into Lua:
document={_='document', id=long, access_hash=long, date=int, mime_type='string', size=int, thumb=PhotoSize, dc_id=int, version=int, attributes={DocumentAttribute}}