MadelineProtoDocs/old_docs/API_docs_v72/constructors/fileLocationUnavailable.md
Sean 4baac3178e Add Syntax Highlight for Markdown
Add PHP, Lua language tag to Code area
2018-10-18 00:30:20 +08:00

982 B

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

Constructor: fileLocationUnavailable

Back to constructors index

Attributes:

Name Type Required
volume_id long Yes
local_id int Yes
secret long Yes

Type: FileLocation

Example:

$fileLocationUnavailable = ['_' => 'fileLocationUnavailable', 'volume_id' => long, 'local_id' => int, 'secret' => long];

PWRTelegram json-encoded version:

{"_": "fileLocationUnavailable", "volume_id": long, "local_id": int, "secret": long}

Or, if you're into Lua:

fileLocationUnavailable={_='fileLocationUnavailable', volume_id=long, local_id=int, secret=long}