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

45 lines
794 B
Markdown

---
title: pageBlockList
description: Page block list
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: pageBlockList
[Back to constructors index](index.md)
Page block list
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|items|Array of [PageListItem](../types/PageListItem.md) | Yes|Items|
### Type: [PageBlock](../types/PageBlock.md)
### Example:
```php
$pageBlockList = ['_' => 'pageBlockList', 'items' => [PageListItem, PageListItem]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "pageBlockList", "items": [PageListItem]}
```
Or, if you're into Lua:
```lua
pageBlockList={_='pageBlockList', items={PageListItem}}
```