MadelineProto/docs/TD_docs/constructors/photo.md

801 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], ];

Or, if you're into Lua:

photo={_='photo', id=long, has_stickers=Bool, sizes={photoSize}, }