MadelineProtoDocs/old_docs/API_docs_v66/constructors/documentAttributeVideo.md

977 B

title description image
documentAttributeVideo Defines a video https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: documentAttributeVideo

Back to constructors index

Defines a video

Attributes:

Name Type Required Description
round_message Bool Optional Whether this is a round video
duration int Optional Duration in seconds
w int Optional Video width
h int Optional Video height

Type: DocumentAttribute

Example:

$documentAttributeVideo = ['_' => 'documentAttributeVideo', 'round_message' => Bool, 'duration' => int, 'w' => int, 'h' => int];

Or, if you're into Lua:

documentAttributeVideo={_='documentAttributeVideo', round_message=Bool, duration=int, w=int, h=int}