MadelineProtoDocs/docs/API_docs/constructors/photo.md

1.2 KiB

title description image
photo Photo https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: photo

Back to constructors index

Photo

Attributes:

Name Type Required Description
has_stickers Bool Optional Whether the photo has mask stickers attached to it
id long Yes ID
access_hash long Yes Access hash
file_reference bytes Yes file reference
date int Yes Date of upload
sizes Array of PhotoSize Yes Sizes
dc_id int Yes DC ID to use for download

Type: Photo

Example:

$photo = ['_' => 'photo', 'has_stickers' => Bool, 'id' => long, 'access_hash' => long, 'file_reference' => 'bytes', 'date' => int, 'sizes' => [PhotoSize, PhotoSize], 'dc_id' => int];

Or, if you're into Lua:

photo={_='photo', has_stickers=Bool, id=long, access_hash=long, file_reference='bytes', date=int, sizes={PhotoSize}, dc_id=int}