MadelineProto/old_docs/API_docs_v42/constructors/userProfilePhoto.md

45 lines
964 B
Markdown
Raw Normal View History

---
title: userProfilePhoto
description: userProfilePhoto attributes, type and example
---
## Constructor: userProfilePhoto
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|photo\_id|[long](../types/long.md) | Yes|
|photo\_small|[FileLocation](../types/FileLocation.md) | Yes|
|photo\_big|[FileLocation](../types/FileLocation.md) | Yes|
### Type: [UserProfilePhoto](../types/UserProfilePhoto.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$userProfilePhoto = ['_' => 'userProfilePhoto', 'photo_id' => long, 'photo_small' => FileLocation, 'photo_big' => FileLocation];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "userProfilePhoto", "photo_id": long, "photo_small": FileLocation, "photo_big": FileLocation}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
userProfilePhoto={_='userProfilePhoto', photo_id=long, photo_small=FileLocation, photo_big=FileLocation}
```