mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-02 23:07:45 +01:00
28 lines
661 B
Markdown
28 lines
661 B
Markdown
|
---
|
||
|
title: updateUserName
|
||
|
description: updateUserName attributes, type and example
|
||
|
---
|
||
|
## Constructor: updateUserName
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### 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|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [Update](../types/Update.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$updateUserName = ['_' => 'updateUserName', 'user_id' => int, 'first_name' => string, 'last_name' => string, 'username' => string, ];
|
||
|
```
|