MadelineProtoDocs/docs/API_docs/constructors/jsonString.md

45 lines
712 B
Markdown
Raw Normal View History

2018-12-26 02:56:50 +01:00
---
title: jsonString
description: Json string
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: jsonString
[Back to constructors index](index.md)
Json string
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|value|[string](../types/string.md) | Yes|Value|
### Type: [JSONValue](../types/JSONValue.md)
### Example:
```php
$jsonString = ['_' => 'jsonString', 'value' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "jsonString", "value": "string"}
```
Or, if you're into Lua:
```lua
jsonString={_='jsonString', value='string'}
```