MadelineProtoDocs/docs/API_docs/constructors/photo.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

1.3 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 Has stickers?
id long Yes ID
access_hash long Yes Access hash
file_reference bytes Yes File reference
date int Yes Date
sizes Array of PhotoSize Yes Sizes

Type: Photo

Example:

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

PWRTelegram json-encoded version:

{"_": "photo", "has_stickers": Bool, "id": long, "access_hash": long, "file_reference": {"_": "bytes", "bytes":"base64 encoded bytes"}, "date": int, "sizes": [PhotoSize]}

Or, if you're into Lua:

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