MadelineProto/old_docs/API_docs_v66/constructors/pagePart.md

45 lines
851 B
Markdown
Raw Normal View History

2017-06-30 15:36:33 +02:00
---
title: pagePart
description: pagePart attributes, type and example
---
## Constructor: pagePart
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|blocks|Array of [PageBlock](../types/PageBlock.md) | Yes|
|photos|Array of [Photo](../types/Photo.md) | Yes|
|videos|Array of [Document](../types/Document.md) | Yes|
### Type: [Page](../types/Page.md)
### Example:
```
$pagePart = ['_' => 'pagePart', 'blocks' => [PageBlock], 'photos' => [Photo], 'videos' => [Document], ];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"pagePart","blocks":["PageBlock"],"photos":["Photo"],"videos":["Document"]}
```
2017-06-30 15:36:33 +02:00
Or, if you're into Lua:
```
pagePart={_='pagePart', blocks={PageBlock}, photos={Photo}, videos={Document}, }
```