mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-02 09:38:28 +01:00
30 lines
577 B
Markdown
30 lines
577 B
Markdown
|
---
|
||
|
title: "jsonBool"
|
||
|
description: "JSON boolean value"
|
||
|
nav_exclude: true
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: jsonBool
|
||
|
[Back to constructors index](/API_docs/constructors/index.html)
|
||
|
|
||
|
|
||
|
|
||
|
JSON boolean value
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|---------------|----------|-------------|
|
||
|
|value|[Bool](/API_docs/types/Bool.html) | Yes|Value|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [JSONValue](/API_docs/types/JSONValue.html)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$jsonBool = ['_' => 'jsonBool', 'value' => Bool];
|
||
|
```
|