MadelineProtoDocs/old_docs/API_docs_v82/constructors/pageBlockPhoto.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

869 B

title description image
pageBlockPhoto Page block photo https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: pageBlockPhoto

Back to constructors index

Page block photo

Attributes:

Name Type Required Description
photo_id long Yes Photo ID
caption RichText Yes Caption

Type: PageBlock

Example:

$pageBlockPhoto = ['_' => 'pageBlockPhoto', 'photo_id' => long, 'caption' => RichText];

PWRTelegram json-encoded version:

{"_": "pageBlockPhoto", "photo_id": long, "caption": RichText}

Or, if you're into Lua:

pageBlockPhoto={_='pageBlockPhoto', photo_id=long, caption=RichText}