40 lines
531 B
Markdown
40 lines
531 B
Markdown
|
---
|
||
|
title: userStatusEmpty
|
||
|
description: Empty user status
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: userStatusEmpty
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
Empty user status
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [UserStatus](../types/UserStatus.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```php
|
||
|
$userStatusEmpty = ['_' => 'userStatusEmpty'];
|
||
|
```
|
||
|
|
||
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
||
|
|
||
|
```
|
||
|
{"_": "userStatusEmpty"}
|
||
|
```
|
||
|
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
```lua
|
||
|
userStatusEmpty={_='userStatusEmpty'}
|
||
|
|
||
|
```
|
||
|
|
||
|
|