39 lines
664 B
Markdown
39 lines
664 B
Markdown
---
|
|
title: jsonObject
|
|
description: Json object
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
---
|
|
# Constructor: jsonObject
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
Json object
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|---------------|----------|-------------|
|
|
|value|Array of [JSONObjectValue](../types/JSONObjectValue.md) | Yes|Value|
|
|
|
|
|
|
|
|
### Type: [JSONValue](../types/JSONValue.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```php
|
|
$jsonObject = ['_' => 'jsonObject', 'value' => [JSONObjectValue, JSONObjectValue]];
|
|
```
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
```lua
|
|
jsonObject={_='jsonObject', value={JSONObjectValue}}
|
|
|
|
```
|
|
|
|
|