MadelineProtoDocs/docs/API_docs/constructors/jsonNull.md

34 lines
387 B
Markdown
Raw Normal View History

2018-12-26 02:56:50 +01:00
---
title: jsonNull
2020-06-16 17:50:25 +02:00
description: null JSON value
2018-12-26 02:56:50 +01:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: jsonNull
[Back to constructors index](index.md)
2020-06-16 17:50:25 +02:00
null JSON value
2018-12-26 02:56:50 +01:00
### Type: [JSONValue](../types/JSONValue.md)
### Example:
```php
$jsonNull = ['_' => 'jsonNull'];
```
Or, if you're into Lua:
```lua
jsonNull={_='jsonNull'}
```