1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-04 20:27:46 +01:00
MadelineProto/docs/API_docs/constructors/updateUserName.md

21 lines
532 B
Markdown
Raw Normal View History

## Constructor: updateUserName
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|user\_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|
2016-12-19 18:56:05 +01:00
### Type: [Update](../types/Update.md)
### Example:
```
2016-12-19 17:48:27 +01:00
$updateUserName = ['_' => updateUserName', 'user_id' => int, 'first_name' => string, 'last_name' => string, 'username' => string, ];
```