MadelineProto/old_docs/API_docs_v62/constructors/pagePart.md

698 B

title description
pagePart pagePart attributes, type and example

Constructor: pagePart

Back to constructors index

Attributes:

Name Type Required
blocks Array of PageBlock Yes
photos Array of Photo Yes
videos Array of Document Yes

Type: Page

Example:

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

Or, if you're into Lua:

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