MadelineProto/docs/TD_docs/constructors/updateUser.md

38 lines
582 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, ];
```
Or, if you're into Lua:
```
updateUser={_='updateUser', user=user, }
```