--- 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: ``` $photo = ['_' => 'photo', 'id' => long, 'has_stickers' => Bool, 'sizes' => [photoSize]]; ``` [PWRTelegram](https://pwrtelegram.xyz) json-encoded version: ``` {"_": "photo", "id": long, "has_stickers": Bool, "sizes": [photoSize]} ``` Or, if you're into Lua: ``` photo={_='photo', id=long, has_stickers=Bool, sizes={photoSize}} ```