848 B
848 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 |
videos | Array of Document | Yes |
Type: Page
Example:
$pageFull = ['_' => 'pageFull', 'blocks' => [PageBlock], 'photos' => [Photo], 'videos' => [Document]];
PWRTelegram json-encoded version:
{"_": "pageFull", "blocks": [PageBlock], "photos": [Photo], "videos": [Document]}
Or, if you're into Lua:
pageFull={_='pageFull', blocks={PageBlock}, photos={Photo}, videos={Document}}