MadelineProtoDocs/old_docs/API_docs_v66/constructors/pageFull.md

831 B

title description image
pageFull Page full https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: pageFull

Back to constructors index

Page full

Attributes:

Name Type Required Description
blocks Array of PageBlock Yes Blocks
photos Array of Photo Yes Photos
videos Array of Document Yes Videos

Type: Page

Example:

$pageFull = ['_' => 'pageFull', 'blocks' => [PageBlock, PageBlock], 'photos' => [Photo, Photo], 'videos' => [Document, Document]];

Or, if you're into Lua:

pageFull={_='pageFull', blocks={PageBlock}, photos={Photo}, videos={Document}}