MadelineProtoDocs/old_docs/API_docs_v33/constructors/video.md
Daniil Gentili e5a1324684 docufix
2018-04-04 23:19:57 +00:00

1.4 KiB

title description image
video video attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: video

Back to constructors index

Attributes:

Name Type Required
id long Yes
access_hash long Yes
date int Yes
duration int Yes
mime_type string Yes
size int Yes
thumb PhotoSize Optional
dc_id int Yes
w int Yes
h int Yes

Type: Video

Example:

$video = ['_' => 'video', 'id' => long, 'access_hash' => long, 'date' => int, 'duration' => int, 'mime_type' => 'string', 'size' => int, 'thumb' => PhotoSize, 'dc_id' => int, 'w' => int, 'h' => int];

PWRTelegram json-encoded version:

{"_": "video", "id": long, "access_hash": long, "date": int, "duration": int, "mime_type": "string", "size": int, "thumb": PhotoSize, "dc_id": int, "w": int, "h": int}

Or, if you're into Lua:

video={_='video', id=long, access_hash=long, date=int, duration=int, mime_type='string', size=int, thumb=PhotoSize, dc_id=int, w=int, h=int}