MadelineProtoDocs/old_docs/API_docs_v103/constructors/inputFileLocation.md

42 lines
949 B
Markdown
Raw Normal View History

2019-08-15 20:25:16 +02:00
---
title: inputFileLocation
description: File location
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputFileLocation
[Back to constructors index](index.md)
File location
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|volume\_id|[long](../types/long.md) | Yes|Volume ID|
|local\_id|[int](../types/int.md) | Yes|Local ID|
|secret|[long](../types/long.md) | Yes|Secret|
|file\_reference|[bytes](../types/bytes.md) | Yes|File reference|
### 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'}
```