mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-12 15:27:20 +01:00
707 B
707 B
title | description |
---|---|
pageFull | pageFull attributes, type and example |
Constructor: pageFull
Attributes:
Name | Type | Required |
---|---|---|
blocks | Array of PageBlock | Yes |
photos | Array of Photo | Yes |
documents | Array of Document | Yes |
Type: Page
Example:
$pageFull = ['_' => 'pageFull', 'blocks' => [PageBlock], 'photos' => [Photo], 'documents' => [Document], ];
Or, if you're into Lua:
pageFull={_='pageFull', blocks={PageBlock}, photos={Photo}, documents={Document}, }