MadelineProto/old_docs/API_docs_v65/constructors/pageFull.md

38 lines
698 B
Markdown
Raw Normal View History

2017-04-21 13:27:04 +02:00
---
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], ];
```
Or, if you're into Lua:
```
pageFull={_='pageFull', blocks={PageBlock}, photos={Photo}, videos={Document}, }
```