MadelineProto/old_docs/API_docs_v68/constructors/photo.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

963 B

title description
photo photo attributes, type and example

Constructor: photo

Back to constructors index

Attributes:

Name Type Required
has_stickers Bool Optional
id long Yes
access_hash long Yes
date int Yes
sizes Array of PhotoSize Yes

Type: Photo

Example:

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

PWRTelegram json-encoded version:

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

Or, if you're into Lua:

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