MadelineProtoDocs/docs/API_docs/constructors/decryptedMessageMediaExternalDocument_23.md
Daniil Gentili e5a1324684 docufix
2018-04-04 23:19:57 +00:00

1.6 KiB

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

Constructor: decryptedMessageMediaExternalDocument_23

Back to constructors index

Attributes:

Name Type Required
id long Yes
access_hash long Yes
date int Yes
mime_type string Yes
size int Yes
thumb PhotoSize Optional
dc_id int Yes
attributes Array of DocumentAttribute Yes

Type: DecryptedMessageMedia

Example:

$decryptedMessageMediaExternalDocument_23 = ['_' => 'decryptedMessageMediaExternalDocument', 'id' => long, 'access_hash' => long, 'date' => int, 'mime_type' => 'string', 'size' => int, 'thumb' => PhotoSize, 'dc_id' => int, 'attributes' => [DocumentAttribute, DocumentAttribute]];

PWRTelegram json-encoded version:

{"_": "decryptedMessageMediaExternalDocument", "id": long, "access_hash": long, "date": int, "mime_type": "string", "size": int, "thumb": PhotoSize, "dc_id": int, "attributes": [DocumentAttribute]}

Or, if you're into Lua:

decryptedMessageMediaExternalDocument_23={_='decryptedMessageMediaExternalDocument', id=long, access_hash=long, date=int, mime_type='string', size=int, thumb=PhotoSize, dc_id=int, attributes={DocumentAttribute}}