--- title: messageMediaVideo description: messageMediaVideo attributes, type and example --- ## Constructor: messageMediaVideo [Back to constructors index](index.md) ### Attributes: | Name | Type | Required | |----------|:-------------:|---------:| |video|[Video](../types/Video.md) | Yes| |caption|[string](../types/string.md) | Yes| ### Type: [MessageMedia](../types/MessageMedia.md) ### Example: ``` $messageMediaVideo = ['_' => 'messageMediaVideo', 'video' => Video, 'caption' => string, ]; ``` Or, if you're into Lua: ``` messageMediaVideo={_='messageMediaVideo', video=Video, caption=string, } ```