MadelineProtoDocs/docs/API_docs/constructors/inputSecureFile.md

822 B

title description image
inputSecureFile inputSecureFile attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: inputSecureFile

Back to constructors index

Attributes:

Name Type Required
id long Yes
access_hash long Yes

Type: InputSecureFile

Example:

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

PWRTelegram json-encoded version:

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

Or, if you're into Lua:

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