46 lines
897 B
Markdown
46 lines
897 B
Markdown
|
---
|
||
|
title: fileLocation
|
||
|
description: fileLocation attributes, type and example
|
||
|
---
|
||
|
## 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|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [FileLocation](../types/FileLocation.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$fileLocation = ['_' => 'fileLocation', 'dc_id' => int, 'volume_id' => long, 'local_id' => int, 'secret' => long];
|
||
|
```
|
||
|
|
||
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
||
|
|
||
|
```
|
||
|
{"_": "fileLocation", "dc_id": int, "volume_id": long, "local_id": int, "secret": long}
|
||
|
```
|
||
|
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
|
||
|
```
|
||
|
fileLocation={_='fileLocation', dc_id=int, volume_id=long, local_id=int, secret=long}
|
||
|
|
||
|
```
|
||
|
|
||
|
|