MadelineProto/docs/TD_docs/constructors/updateOption.md
2017-07-23 16:33:46 +02:00

817 B

title description
updateOption Some option changed its value

Constructor: updateOption

Back to constructors index

Some option changed its value

Attributes:

Name Type Required Description
name string Yes Option name
value OptionValue Yes New option value

Type: Update

Example:

$updateOption = ['_' => 'updateOption', 'name' => 'string', 'value' => OptionValue];

PWRTelegram json-encoded version:

{"_": "updateOption", "name": "string", "value": OptionValue}

Or, if you're into Lua:

updateOption={_='updateOption', name='string', value=OptionValue}