mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-11 10:19:36 +01:00
909 B
909 B
title | description |
---|---|
fileLocationUnavailable | fileLocationUnavailable attributes, type and example |
Constructor: fileLocationUnavailable
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, }