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

47 lines
999 B
Markdown

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