39 lines
784 B
Markdown
39 lines
784 B
Markdown
|
---
|
||
|
title: updateUserPhoto
|
||
|
description: updateUserPhoto attributes, type and example
|
||
|
---
|
||
|
## Constructor: updateUserPhoto
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|:-------------:|---------:|
|
||
|
|user\_id|[int](../types/int.md) | Yes|
|
||
|
|date|[int](../types/int.md) | Yes|
|
||
|
|photo|[UserProfilePhoto](../types/UserProfilePhoto.md) | Yes|
|
||
|
|previous|[Bool](../types/Bool.md) | Yes|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [Update](../types/Update.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$updateUserPhoto = ['_' => 'updateUserPhoto', 'user_id' => int, 'date' => int, 'photo' => UserProfilePhoto, 'previous' => Bool, ];
|
||
|
```
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
|
||
|
```
|
||
|
updateUserPhoto={_='updateUserPhoto', user_id=int, date=int, photo=UserProfilePhoto, previous=Bool, }
|
||
|
|
||
|
```
|
||
|
|
||
|
|