MadelineProtoDocs/docs/API_docs/constructors/encryptedFile.md

957 B

title description image
encryptedFile Encrypted file https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: encryptedFile

Back to constructors index

Encrypted file

Attributes:

Name Type Required Description
id long Yes ID
access_hash long Yes Access hash
size int Yes Size
dc_id int Yes DC ID
key_fingerprint int Yes Key fingerprint

Type: EncryptedFile

Example:

$encryptedFile = ['_' => 'encryptedFile', 'id' => long, 'access_hash' => long, 'size' => int, 'dc_id' => int, 'key_fingerprint' => int];

Or, if you're into Lua:

encryptedFile={_='encryptedFile', id=long, access_hash=long, size=int, dc_id=int, key_fingerprint=int}