MadelineProtoDocs/old_docs/API_docs_v109/constructors/pageListItemBlocks.md

39 lines
688 B
Markdown
Raw Normal View History

2020-03-06 12:24:14 +01:00
---
title: pageListItemBlocks
description: List item
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: pageListItemBlocks
[Back to constructors index](index.md)
List item
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|blocks|Array of [PageBlock](../types/PageBlock.md) | Yes|Blocks|
### Type: [PageListItem](../types/PageListItem.md)
### Example:
```php
$pageListItemBlocks = ['_' => 'pageListItemBlocks', 'blocks' => [PageBlock, PageBlock]];
```
Or, if you're into Lua:
```lua
pageListItemBlocks={_='pageListItemBlocks', blocks={PageBlock}}
```