MadelineProtoDocs/docs/API_docs/constructors/secureFile.md

1.4 KiB

title description image
secureFile Secure [passport](https://core.telegram.org/passport) file, for more info [see the passport docs »](https://core.telegram.org/passport/encryption#inputsecurefile) https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: secureFile

Back to constructors index

Secure passport file, for more info see the passport docs »

Attributes:

Name Type Required Description
id long Yes ID
access_hash long Yes Access hash
size int Yes File size
dc_id int Yes DC ID
date int Yes Date of upload
file_hash bytes Yes File hash
secret bytes Yes Secret

Type: SecureFile

Example:

$secureFile = ['_' => 'secureFile', 'id' => long, 'access_hash' => long, 'size' => int, 'dc_id' => int, 'date' => int, 'file_hash' => 'bytes', 'secret' => 'bytes'];

Or, if you're into Lua:

secureFile={_='secureFile', id=long, access_hash=long, size=int, dc_id=int, date=int, file_hash='bytes', secret='bytes'}