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

926 B

title description image
inputSecureFileLocation Secure file location https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: inputSecureFileLocation

Back to constructors index

Secure file location

Attributes:

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

Type: InputFileLocation

Example:

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

PWRTelegram json-encoded version:

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

Or, if you're into Lua:

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