mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-04 21:07:47 +01:00
30 lines
635 B
Markdown
30 lines
635 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) | Required|
|
||
|
|first\_name|[string](../types/string.md) | Required|
|
||
|
|last\_name|[string](../types/string.md) | Required|
|
||
|
|username|[string](../types/string.md) | Required|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [User](../types/User.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$userDeleted = ['_' => 'userDeleted', 'id' => int, 'first_name' => string, 'last_name' => string, 'username' => string, ];
|
||
|
```
|
||
|
|