MadelineProtoDocs/old_docs/API_docs_v105/constructors/userEmpty.md

39 lines
556 B
Markdown
Raw Normal View History

2019-09-13 17:13:55 +02:00
---
title: userEmpty
description: Empty user
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: userEmpty
[Back to constructors index](index.md)
Empty user
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[int](../types/int.md) | Yes|ID|
### Type: [User](../types/User.md)
### Example:
```php
$userEmpty = ['_' => 'userEmpty', 'id' => int];
```
Or, if you're into Lua:
```lua
userEmpty={_='userEmpty', id=int}
```