mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-15 08:16:54 +01:00
772 B
772 B
title | description |
---|---|
messageMediaVideo | messageMediaVideo attributes, type and example |
Constructor: messageMediaVideo
Attributes:
Name | Type | Required |
---|---|---|
video | Video | Yes |
caption | string | Yes |
Type: MessageMedia
Example:
$messageMediaVideo = ['_' => 'messageMediaVideo', 'video' => Video, 'caption' => string, ];
PWRTelegram json-encoded version:
{"_":"messageMediaVideo","video":"Video","caption":"string"}
Or, if you're into Lua:
messageMediaVideo={_='messageMediaVideo', video=Video, caption=string, }