1.5 KiB
1.5 KiB
title | description |
---|---|
video | video attributes, type and example |
Constructor: video
Attributes:
Name | Type | Required |
---|---|---|
id | long | Yes |
access_hash | long | Yes |
user_id | int | Yes |
date | int | Yes |
caption | string | Yes |
duration | int | Yes |
mime_type | string | Yes |
size | int | Yes |
thumb | PhotoSize | Yes |
dc_id | int | Yes |
w | int | Yes |
h | int | Yes |
Type: Video
Example:
$video = ['_' => 'video', 'id' => long, 'access_hash' => long, 'user_id' => int, 'date' => int, 'caption' => 'string', '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, "user_id": int, "date": int, "caption": "string", "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, user_id=int, date=int, caption='string', duration=int, mime_type='string', size=int, thumb=PhotoSize, dc_id=int, w=int, h=int}