1.3 KiB
1.3 KiB
title | description |
---|---|
pageBlockEmbed | pageBlockEmbed attributes, type and example |
Constructor: pageBlockEmbed
Attributes:
Name | Type | Required |
---|---|---|
full_width | Bool | Optional |
allow_scrolling | Bool | Optional |
url | string | Optional |
html | string | Optional |
poster_photo_id | long | Optional |
w | int | Yes |
h | int | Yes |
caption | RichText | Yes |
Type: PageBlock
Example:
$pageBlockEmbed = ['_' => 'pageBlockEmbed', 'full_width' => Bool, 'allow_scrolling' => Bool, 'url' => 'string', 'html' => 'string', 'poster_photo_id' => long, 'w' => int, 'h' => int, 'caption' => RichText];
PWRTelegram json-encoded version:
{"_": "pageBlockEmbed", "full_width": Bool, "allow_scrolling": Bool, "url": "string", "html": "string", "poster_photo_id": long, "w": int, "h": int, "caption": RichText}
Or, if you're into Lua:
pageBlockEmbed={_='pageBlockEmbed', full_width=Bool, allow_scrolling=Bool, url='string', html='string', poster_photo_id=long, w=int, h=int, caption=RichText}