MadelineProto/docs/TD_docs/constructors/updateOption.md

46 lines
817 B
Markdown
Raw Normal View History

---
title: updateOption
description: Some option changed its value
---
## Constructor: updateOption
[Back to constructors index](index.md)
Some option changed its value
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|name|[string](../types/string.md) | Yes|Option name|
|value|[OptionValue](../types/OptionValue.md) | Yes|New option value|
### Type: [Update](../types/Update.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$updateOption = ['_' => 'updateOption', 'name' => 'string', 'value' => OptionValue];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "updateOption", "name": "string", "value": OptionValue}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
updateOption={_='updateOption', name='string', value=OptionValue}
```