MadelineProto/docs/API_docs/constructors/dcOption.md

32 lines
736 B
Markdown
Raw Normal View History

2016-12-20 13:15:22 +01:00
---
title: dcOption
2016-12-20 13:32:11 +01:00
description: dcOption attributes, type and example
2016-12-20 13:15:22 +01:00
---
## Constructor: dcOption
2016-12-20 13:15:22 +01:00
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|ipv6|[Bool](../types/Bool.md) | Optional|
|media\_only|[Bool](../types/Bool.md) | Optional|
|tcpo\_only|[Bool](../types/Bool.md) | Optional|
|id|[int](../types/int.md) | Required|
|ip\_address|[string](../types/string.md) | Required|
|port|[int](../types/int.md) | Required|
2016-12-19 18:56:05 +01:00
### Type: [DcOption](../types/DcOption.md)
### Example:
```
2016-12-30 21:21:36 +01:00
$dcOption = ['_' => 'dcOption', 'ipv6' => true, 'media_only' => true, 'tcpo_only' => true, 'id' => int, 'ip_address' => string, 'port' => int, ];
```