MadelineProto/docs/TD_docs/constructors/userTypeDeleted.md

44 lines
818 B
Markdown
Raw Normal View History

---
title: userTypeDeleted
description: Deleted user or deleted bot. There is no any information about it except user_id. None of active action can be performed with deleted user
---
## Constructor: userTypeDeleted
[Back to constructors index](index.md)
Deleted user or deleted bot. There is no any information about it except user_id. None of active action can be performed with deleted user
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
### Type: [UserType](../types/UserType.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$userTypeDeleted = ['_' => 'userTypeDeleted'];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "userTypeDeleted"}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
userTypeDeleted={_='userTypeDeleted'}
```