1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-15 11:26:56 +01:00
MadelineProto/docs/TD_docs/constructors/updateOption.md
2017-07-23 16:11:02 +02:00

814 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, }