MadelineProtoDocs/old_docs/API_docs_v18/constructors/photo.md
Daniil Gentili e5a1324684 docufix
2018-04-04 23:19:57 +00:00

1.2 KiB

title description image
photo photo attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

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 Optional
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, 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}}