2017-07-23 17:44:01 +02:00
|
|
|
---
|
|
|
|
title: updateUserName
|
|
|
|
description: updateUserName attributes, type and example
|
|
|
|
---
|
|
|
|
## Constructor: updateUserName
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
2017-08-20 11:05:56 +02:00
|
|
|
|----------|---------------|----------|
|
2017-07-23 17:44:01 +02:00
|
|
|
|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'];
|
|
|
|
```
|
|
|
|
|
|
|
|
[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'}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|