MadelineProtoDocs/old_docs/API_docs_v102/constructors/inputFileLocation.md

42 lines
1.0 KiB
Markdown
Raw Permalink Normal View History

2019-06-24 15:45:02 +02:00
---
title: inputFileLocation
2019-12-27 17:48:04 +01:00
description: DEPRECATED location of a photo
2019-06-24 15:45:02 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputFileLocation
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
DEPRECATED location of a photo
2019-06-24 15:45:02 +02:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|volume\_id|[long](../types/long.md) | Yes|Server volume|
|local\_id|[int](../types/int.md) | Yes|File identifier|
|secret|[long](../types/long.md) | Yes|Check sum to access the file|
|file\_reference|[bytes](../types/bytes.md) | Yes|[File reference](https://core.telegram.org/api/file_reference)|
2019-06-24 15:45:02 +02:00
### Type: [InputFileLocation](../types/InputFileLocation.md)
### Example:
```php
$inputFileLocation = ['_' => 'inputFileLocation', 'volume_id' => long, 'local_id' => int, 'secret' => long, 'file_reference' => 'bytes'];
```
Or, if you're into Lua:
```lua
inputFileLocation={_='inputFileLocation', volume_id=long, local_id=int, secret=long, file_reference='bytes'}
```