1.1 KiB
1.1 KiB
title | description | image |
---|---|---|
inputDocumentFileLocation | Document file location | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: inputDocumentFileLocation
Document file location
Attributes:
Name | Type | Required | Description |
---|---|---|---|
id | long | Yes | ID |
access_hash | long | Yes | Access hash |
file_reference | bytes | Yes | File reference |
Type: InputFileLocation
Example:
$inputDocumentFileLocation = ['_' => 'inputDocumentFileLocation', 'id' => long, 'access_hash' => long, 'file_reference' => 'bytes'];
PWRTelegram json-encoded version:
{"_": "inputDocumentFileLocation", "id": long, "access_hash": long, "file_reference": {"_": "bytes", "bytes":"base64 encoded bytes"}}
Or, if you're into Lua:
inputDocumentFileLocation={_='inputDocumentFileLocation', id=long, access_hash=long, file_reference='bytes'}