mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-04 20:07:50 +01:00
36 lines
468 B
Markdown
36 lines
468 B
Markdown
|
---
|
||
|
title: userEmpty
|
||
|
description: userEmpty attributes, type and example
|
||
|
---
|
||
|
## Constructor: userEmpty
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|:-------------:|---------:|
|
||
|
|id|[int](../types/int.md) | Yes|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [User](../types/User.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$userEmpty = ['_' => 'userEmpty', 'id' => int, ];
|
||
|
```
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
|
||
|
```
|
||
|
userEmpty={_='userEmpty', id=int, }
|
||
|
|
||
|
```
|
||
|
|
||
|
|