MadelineProtoDocs/docs/API_docs/constructors/fileLocationToBeDeprecated.md
2019-06-23 13:07:51 +02:00

40 lines
822 B
Markdown

---
title: fileLocationToBeDeprecated
description: File location (deprecated)
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: fileLocationToBeDeprecated
[Back to constructors index](index.md)
File location (deprecated)
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|volume\_id|[long](../types/long.md) | Yes|Volume ID|
|local\_id|[int](../types/int.md) | Yes|Local ID|
### Type: [FileLocation](../types/FileLocation.md)
### Example:
```php
$fileLocationToBeDeprecated = ['_' => 'fileLocationToBeDeprecated', 'volume_id' => long, 'local_id' => int];
```
Or, if you're into Lua:
```lua
fileLocationToBeDeprecated={_='fileLocationToBeDeprecated', volume_id=long, local_id=int}
```