mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-12 02:03:04 +00:00
27 lines
944 B
Python
27 lines
944 B
Python
from aiogram.types.photo_size import PhotoSize
|
|
from . import Deserializable
|
|
|
|
|
|
class Video(Deserializable):
|
|
def __init__(self, file_id, width, height, duration, thumb, mime_type, file_size):
|
|
self.file_id: str = file_id
|
|
self.width: int = width
|
|
self.height: int = height
|
|
self.duration: int = duration
|
|
self.thumb: PhotoSize = thumb
|
|
self.mime_type = mime_type
|
|
self.file_size: int = file_size
|
|
|
|
@classmethod
|
|
def de_json(cls, raw_data):
|
|
raw_data = cls.check_json(raw_data)
|
|
|
|
file_id = raw_data.get('file_id')
|
|
width = raw_data.get('width')
|
|
height = raw_data.get('height')
|
|
duration = raw_data.get('duration')
|
|
thumb = PhotoSize.deserialize(raw_data.get('thumb'))
|
|
mime_type = raw_data.get('mime_type')
|
|
file_size = raw_data.get('file_size')
|
|
|
|
return Video(file_id, width, height, duration, thumb, mime_type, file_size)
|