846 B
846 B
title | description |
---|---|
photo | photo attributes, type and example |
Constructor: photo
Attributes:
Name | Type | Required |
---|---|---|
id | long | Yes |
access_hash | long | Yes |
date | int | Yes |
sizes | Array of PhotoSize | Yes |
Type: Photo
Example:
$photo = ['_' => 'photo', 'id' => long, 'access_hash' => long, 'date' => int, 'sizes' => [PhotoSize]];
PWRTelegram json-encoded version:
{"_": "photo", "id": long, "access_hash": long, "date": int, "sizes": [PhotoSize]}
Or, if you're into Lua:
photo={_='photo', id=long, access_hash=long, date=int, sizes={PhotoSize}}