1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-12 15:07:21 +01:00
MadelineProto/docs/API_docs/constructors/updateUserName.md

18 lines
529 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:35:27 +01:00
### Type:
2016-12-19 18:35:27 +01:00
[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, ];
```