MadelineProto/docs/TD_docs/constructors/photo.md

47 lines
940 B
Markdown
Raw Normal View History

---
title: photo
description: Describes photo
---
## Constructor: photo
[Back to constructors index](index.md)
Describes photo
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|id|[long](../types/long.md) | Yes|Photo identifier, 0 for deleted photo|
|has\_stickers|[Bool](../types/Bool.md) | Yes|True, if some stickers was added to the photo|
|sizes|Array of [photoSize](../constructors/photoSize.md) | Yes|Available variants of photo of different sizes|
### Type: [Photo](../types/Photo.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$photo = ['_' => 'photo', 'id' => long, 'has_stickers' => Bool, 'sizes' => [photoSize]];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "photo", "id": long, "has_stickers": Bool, "sizes": [photoSize]}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
photo={_='photo', id=long, has_stickers=Bool, sizes={photoSize}}
```