MadelineProtoDocs/old_docs/API_docs_v100/constructors/updateUserPhoto.md

42 lines
1.2 KiB
Markdown
Raw Permalink Normal View History

2019-06-23 13:07:51 +02:00
---
title: updateUserPhoto
2019-12-27 17:48:04 +01:00
description: Change of contact's profile photo.
2019-06-23 13:07:51 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: updateUserPhoto
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
Change of contact's profile photo.
2019-06-23 13:07:51 +02:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|user\_id|[int](../types/int.md) | Yes|User identifier|
|date|[int](../types/int.md) | Yes|Date of photo update.<br>Parameter was added in [second layer](?layer=2).|
|photo|[UserProfilePhoto](../types/UserProfilePhoto.md) | Optional|New profile photo|
|previous|[Bool](../types/Bool.md) | Yes|([boolTrue](../constructors/boolTrue.md)), if one of the previously used photos is set a profile photo.<br>Parameter was added in [second layer](?layer=2).|
2019-06-23 13:07:51 +02:00
### Type: [Update](../types/Update.md)
### Example:
```php
$updateUserPhoto = ['_' => 'updateUserPhoto', 'user_id' => int, 'date' => int, 'photo' => UserProfilePhoto, 'previous' => Bool];
```
Or, if you're into Lua:
```lua
updateUserPhoto={_='updateUserPhoto', user_id=int, date=int, photo=UserProfilePhoto, previous=Bool}
```