MadelineProto/old_docs/API_docs_v46/constructors/updateUserName.md

46 lines
963 B
Markdown
Raw Normal View History

---
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) | Yes|
|first\_name|[string](../types/string.md) | Yes|
|last\_name|[string](../types/string.md) | Yes|
|username|[string](../types/string.md) | Yes|
### Type: [Update](../types/Update.md)
### Example:
```
$updateUserName = ['_' => 'updateUserName', 'user_id' => int, 'first_name' => string, 'last_name' => string, 'username' => string, ];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"updateUserName","user_id":"int","first_name":"string","last_name":"string","username":"string"}
```
Or, if you're into Lua:
```
updateUserName={_='updateUserName', user_id=int, first_name=string, last_name=string, username=string, }
```