MadelineProtoDocs/old_docs/API_docs_v30/constructors/fileLocation.md

41 lines
918 B
Markdown

---
title: fileLocation
description: fileLocation attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: fileLocation
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|dc\_id|[int](../types/int.md) | Yes|
|volume\_id|[long](../types/long.md) | Yes|
|local\_id|[int](../types/int.md) | Yes|
|secret|[long](../types/long.md) | Yes|
|file\_reference|[bytes](../types/bytes.md) | Yes|
### Type: [FileLocation](../types/FileLocation.md)
### Example:
```php
$fileLocation = ['_' => 'fileLocation', 'dc_id' => int, 'volume_id' => long, 'local_id' => int, 'secret' => long, 'file_reference' => 'bytes'];
```
Or, if you're into Lua:
```lua
fileLocation={_='fileLocation', dc_id=int, volume_id=long, local_id=int, secret=long, file_reference='bytes'}
```