MadelineProto/old_docs/API_docs_v18/constructors/userDeleted.md

39 lines
748 B
Markdown
Raw Normal View History

---
title: userDeleted
description: userDeleted attributes, type and example
---
## Constructor: userDeleted
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|id|[int](../types/int.md) | Yes|
|first\_name|[string](../types/string.md) | Yes|
|last\_name|[string](../types/string.md) | Yes|
|username|[string](../types/string.md) | Yes|
### Type: [User](../types/User.md)
### Example:
```
$userDeleted = ['_' => 'userDeleted', 'id' => int, 'first_name' => string, 'last_name' => string, 'username' => string, ];
```
Or, if you're into Lua:
```
userDeleted={_='userDeleted', id=int, first_name=string, last_name=string, username=string, }
```