2019-09-13 17:13:55 +02:00
|
|
|
---
|
|
|
|
title: fileLocationToBeDeprecated
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Indicates the location of a photo, will be deprecated soon
|
2019-09-13 17:13:55 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: fileLocationToBeDeprecated
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Indicates the location of a photo, will be deprecated soon
|
2019-09-13 17:13:55 +02:00
|
|
|
|
|
|
|
### 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}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|