MadelineProtoDocs/old_docs/API_docs_v27/constructors/userDeleted.md
Daniil Gentili e5a1324684 docufix
2018-04-04 23:19:57 +00:00

47 lines
1002 B
Markdown

---
title: userDeleted
description: userDeleted attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# 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'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "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'}
```