MadelineProtoDocs/docs/API_docs/constructors/jsonObjectValue.md

748 B

title: jsonObjectValue description: JSON key: value pair image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: jsonObjectValue

Back to constructors index

JSON key: value pair

Attributes:

Name Type Required Description
key string Yes Key
value JSONValue Yes Value

Type: JSONObjectValue

Example:

$jsonObjectValue = ['_' => 'jsonObjectValue', 'key' => 'string', 'value' => JSONValue];

Or, if you're into Lua:

jsonObjectValue={_='jsonObjectValue', key='string', value=JSONValue}