MadelineProto/old_docs/API_docs_v23/constructors/photo.md
2017-07-23 16:11:02 +02:00

1.1 KiB

title description
photo photo attributes, type and example

Constructor: photo

Back to constructors index

Attributes:

Name Type Required
id long Yes
access_hash long Yes
user_id int Yes
date int Yes
caption string Yes
geo GeoPoint Yes
sizes Array of PhotoSize Yes

Type: Photo

Example:

$photo = ['_' => 'photo', 'id' => long, 'access_hash' => long, 'user_id' => int, 'date' => int, 'caption' => string, 'geo' => GeoPoint, 'sizes' => [PhotoSize], ];

PWRTelegram json-encoded version:

{"_":"photo","id":"long","access_hash":"long","user_id":"int","date":"int","caption":"string","geo":"GeoPoint","sizes":["PhotoSize"]}

Or, if you're into Lua:

photo={_='photo', id=long, access_hash=long, user_id=int, date=int, caption=string, geo=GeoPoint, sizes={PhotoSize}, }