MadelineProtoDocs/docs/API_docs/constructors/jsonArray.md

39 lines
632 B
Markdown
Raw Normal View History

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