MadelineProto/docs/API_docs/constructors/fileLocation23.md

39 lines
755 B
Markdown
Raw Normal View History

2016-12-20 13:15:22 +01:00
---
2017-05-27 23:21:14 +02:00
title: fileLocation23
description: fileLocation23 attributes, type and example
2016-12-20 13:15:22 +01:00
---
2017-05-27 23:21:14 +02:00
## Constructor: fileLocation23
2016-12-20 13:15:22 +01:00
[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|
2016-12-19 18:56:05 +01:00
### Type: [FileLocation](../types/FileLocation.md)
### Example:
```
2017-05-27 23:21:14 +02:00
$fileLocation23 = ['_' => 'fileLocation23', 'dc_id' => int, 'volume_id' => long, 'local_id' => int, 'secret' => long, ];
```
Or, if you're into Lua:
```
2017-05-27 23:21:14 +02:00
fileLocation23={_='fileLocation23', dc_id=int, volume_id=long, local_id=int, secret=long, }
```