# frozen_string_literal: true module Telegram module Bot module Types class Video < Base attribute :file_id, String attribute :file_unique_id, String attribute :width, Integer attribute :height, Integer attribute :duration, Integer attribute :thumb, PhotoSize attribute :file_name, String attribute :mime_type, String attribute :file_size, Integer end end end end