1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-03 21:17:46 +01:00
MadelineProto/docs/API_docs/constructors/decryptedMessageMediaExternalDocument23.md
2017-05-27 22:21:14 +01:00

1.3 KiB

title description
decryptedMessageMediaExternalDocument23 decryptedMessageMediaExternalDocument23 attributes, type and example

Constructor: decryptedMessageMediaExternalDocument23

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:

$decryptedMessageMediaExternalDocument23 = ['_' => 'decryptedMessageMediaExternalDocument23', '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:

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