1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-15 05:36:56 +01:00
MadelineProto/docs/TD_docs/constructors/optionBoolean.md
2017-07-23 16:33:46 +02:00

664 B

title description
optionBoolean Boolean option

Constructor: optionBoolean

Back to constructors index

Boolean option

Attributes:

Name Type Required Description
value Bool Yes Value of an option

Type: OptionValue

Example:

$optionBoolean = ['_' => 'optionBoolean', 'value' => Bool];

PWRTelegram json-encoded version:

{"_": "optionBoolean", "value": Bool}

Or, if you're into Lua:

optionBoolean={_='optionBoolean', value=Bool}