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

870 B

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

Constructor: pageBlockList

Back to constructors index

Page block list

Attributes:

Name Type Required Description
ordered Bool Yes Ordered?
items Array of RichText Yes Items

Type: PageBlock

Example:

$pageBlockList = ['_' => 'pageBlockList', 'ordered' => Bool, 'items' => [RichText, RichText]];

PWRTelegram json-encoded version:

{"_": "pageBlockList", "ordered": Bool, "items": [RichText]}

Or, if you're into Lua:

pageBlockList={_='pageBlockList', ordered=Bool, items={RichText}}