1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-13 15:07:22 +01:00
MadelineProto/old_docs/API_docs_v65/constructors/pageBlockVideo.md
Daniil Gentili 1eb2fc0b4f fix
2017-04-21 13:27:04 +02:00

778 B

title description
pageBlockVideo pageBlockVideo attributes, type and example

Constructor: pageBlockVideo

Back to constructors index

Attributes:

Name Type Required
autoplay Bool Optional
loop Bool Optional
video_id long Yes
caption RichText Yes

Type: PageBlock

Example:

$pageBlockVideo = ['_' => 'pageBlockVideo', 'autoplay' => Bool, 'loop' => Bool, 'video_id' => long, 'caption' => RichText, ];

Or, if you're into Lua:

pageBlockVideo={_='pageBlockVideo', autoplay=Bool, loop=Bool, video_id=long, caption=RichText, }