940 B
940 B
title | description |
---|---|
photo | Describes photo |
Constructor: photo
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}}