MadelineProtoDocs/docs/API_docs/constructors/fileLocationUnavailable.md
Daniil Gentili e5a1324684 docufix
2018-04-04 23:19:57 +00:00

46 lines
979 B
Markdown

---
title: fileLocationUnavailable
description: fileLocationUnavailable attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: fileLocationUnavailable
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|volume\_id|[long](../types/long.md) | Yes|
|local\_id|[int](../types/int.md) | Yes|
|secret|[long](../types/long.md) | Yes|
### Type: [FileLocation](../types/FileLocation.md)
### Example:
```
$fileLocationUnavailable = ['_' => 'fileLocationUnavailable', 'volume_id' => long, 'local_id' => int, 'secret' => long];
```
[PWRTelegram](https://pwrtelegram.xyz) 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}
```