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

940 B

title description
photo Describes photo

Constructor: photo

Back to constructors index

Describes photo

Attributes:

Name Type Required Description
id long Yes Photo identifier, 0 for deleted photo
has_stickers Bool Yes True, if some stickers was added to the photo
sizes Array of photoSize Yes Available variants of photo of different sizes

Type: Photo

Example:

$photo = ['_' => 'photo', 'id' => long, 'has_stickers' => Bool, 'sizes' => [photoSize]];

PWRTelegram 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}}