MadelineProtoDocs/docs/API_docs/constructors/inputEncryptedFile.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

881 B

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

Constructor: inputEncryptedFile

Back to constructors index

Encrypted file

Attributes:

Name Type Required Description
id long Yes ID
access_hash long Yes Access hash

Type: InputEncryptedFile

Example:

$inputEncryptedFile = ['_' => 'inputEncryptedFile', 'id' => long, 'access_hash' => long];

PWRTelegram json-encoded version:

{"_": "inputEncryptedFile", "id": long, "access_hash": long}

Or, if you're into Lua:

inputEncryptedFile={_='inputEncryptedFile', id=long, access_hash=long}