MadelineProtoDocs/docs/API_docs/constructors/jsonBool.md

39 lines
592 B
Markdown
Raw Normal View History

2018-12-26 02:56:50 +01:00
---
title: jsonBool
2019-12-27 17:48:04 +01:00
description: JSON boolean value
2018-12-26 02:56:50 +01:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: jsonBool
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
JSON boolean value
2018-12-26 02:56:50 +01:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|value|[Bool](../types/Bool.md) | Yes|Value|
2018-12-26 02:56:50 +01:00
### Type: [JSONValue](../types/JSONValue.md)
### Example:
```php
$jsonBool = ['_' => 'jsonBool', 'value' => Bool];
```
Or, if you're into Lua:
```lua
jsonBool={_='jsonBool', value=Bool}
```