1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-12 16:07:21 +01:00
MadelineProto/docs/API_docs/constructors/pagePart.md
2017-07-23 16:11:02 +02:00

863 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
documents Array of Document Yes

Type: Page

Example:

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

PWRTelegram json-encoded version:

{"_":"pagePart","blocks":["PageBlock"],"photos":["Photo"],"documents":["Document"]}

Or, if you're into Lua:

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