1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-15 04:16:54 +01:00
MadelineProto/docs/TD_docs/constructors/updateUser.md
2017-07-23 16:33:46 +02:00

45 lines
684 B
Markdown

---
title: updateUser
description: Some data about a user has been changed
---
## Constructor: updateUser
[Back to constructors index](index.md)
Some data about a user has been changed
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|user|[user](../types/user.md) | Yes|New data about the user|
### Type: [Update](../types/Update.md)
### Example:
```
$updateUser = ['_' => 'updateUser', 'user' => user];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "updateUser", "user": user}
```
Or, if you're into Lua:
```
updateUser={_='updateUser', user=user}
```