--- title: photo description: Photo image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png --- # Constructor: photo [Back to constructors index](index.md) Photo ### Attributes: | Name | Type | Required | Description | |----------|---------------|----------|-------------| |has\_stickers|[Bool](../types/Bool.md) | Optional|Whether the photo has mask stickers attached to it| |id|[long](../types/long.md) | Yes|ID| |access\_hash|[long](../types/long.md) | Yes|Access hash| |date|[int](../types/int.md) | Yes|Date of upload| |sizes|Array of [PhotoSize](../types/PhotoSize.md) | Yes|Available sizes for download| ### Type: [Photo](../types/Photo.md) ### Example: ```php $photo = ['_' => 'photo', 'has_stickers' => Bool, 'id' => long, 'access_hash' => long, 'date' => int, 'sizes' => [PhotoSize, PhotoSize]]; ``` Or, if you're into Lua: ```lua photo={_='photo', has_stickers=Bool, id=long, access_hash=long, date=int, sizes={PhotoSize}} ```