mirror of
https://github.com/danog/MadelineProto.git
synced 2024-11-27 15:14:39 +01:00
765 B
765 B
title | description |
---|---|
inputMediaVideo | inputMediaVideo attributes, type and example |
Constructor: inputMediaVideo
Attributes:
Name | Type | Required |
---|---|---|
id | InputVideo | Yes |
caption | string | Yes |
Type: InputMedia
Example:
$inputMediaVideo = ['_' => 'inputMediaVideo', 'id' => InputVideo, 'caption' => string, ];
PWRTelegram json-encoded version:
{"_":"inputMediaVideo","id":"InputVideo","caption":"string"}
Or, if you're into Lua:
inputMediaVideo={_='inputMediaVideo', id=InputVideo, caption=string, }