MadelineProtoDocs/old_docs/API_docs_v100/constructors/nearestDc.md

41 lines
901 B
Markdown
Raw Permalink Normal View History

2019-06-23 13:07:51 +02:00
---
title: nearestDc
2019-12-27 17:48:04 +01:00
description: Nearest data centre, according to geo-ip.
2019-06-23 13:07:51 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: nearestDc
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
Nearest data centre, according to geo-ip.
2019-06-23 13:07:51 +02:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|country|[string](../types/string.md) | Yes|Country code determined by geo-ip|
|this\_dc|[int](../types/int.md) | Yes|Number of current data centre|
|nearest\_dc|[int](../types/int.md) | Yes|Number of nearest data centre|
2019-06-23 13:07:51 +02:00
### Type: [NearestDc](../types/NearestDc.md)
### Example:
```php
$nearestDc = ['_' => 'nearestDc', 'country' => 'string', 'this_dc' => int, 'nearest_dc' => int];
```
Or, if you're into Lua:
```lua
nearestDc={_='nearestDc', country='string', this_dc=int, nearest_dc=int}
```