MadelineProto/docs/API_docs/constructors/decryptedMessageMediaExternalDocument_23.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

1.5 KiB

title description
decryptedMessageMediaExternalDocument decryptedMessageMediaExternalDocument attributes, type and example

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

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