MadelineProto/old_docs/API_docs_v23/constructors/userDeleted.md
2017-07-23 16:33:46 +02:00

46 lines
929 B
Markdown

---
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'];
```
[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'}
```