2019-03-08 13:49:23 +01:00

738 B

title description image
jsonArray Json array https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: jsonArray

Back to constructors index

Json array

Attributes:

Name Type Required Description
value Array of JSONValue Yes Value

Type: JSONValue

Example:

$jsonArray = ['_' => 'jsonArray', 'value' => [JSONValue, JSONValue]];

PWRTelegram json-encoded version:

{"_": "jsonArray", "value": [JSONValue]}

Or, if you're into Lua:

jsonArray={_='jsonArray', value={JSONValue}}