MadelineProto/old_docs/API_docs_v62/constructors/pageFull.md

45 lines
851 B
Markdown
Raw Normal View History

---
title: pageFull
description: pageFull attributes, type and example
---
## Constructor: pageFull
[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:
```
$pageFull = ['_' => 'pageFull', 'blocks' => [PageBlock], 'photos' => [Photo], 'videos' => [Document], ];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"pageFull","blocks":["PageBlock"],"photos":["Photo"],"videos":["Document"]}
```
Or, if you're into Lua:
```
pageFull={_='pageFull', blocks={PageBlock}, photos={Photo}, videos={Document}, }
```