MadelineProto/docs/TD_docs/constructors/photo.md
2017-07-23 16:33:46 +02: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}}