MadelineProtoDocs/old_docs/API_docs_v105/constructors/pageBlockList.md

39 lines
675 B
Markdown
Raw Normal View History

2019-09-13 17:13:55 +02:00
---
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]];
```
Or, if you're into Lua:
```lua
pageBlockList={_='pageBlockList', items={PageListItem}}
```