1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
use crate::types::{file, PhotoSize};
use serde::Deserialize;
/// Represents a [`Video`].
///
/// [`Video`]: https://core.telegram.org/bots/api#video
#[derive(Debug, PartialEq, Eq, Clone, Hash, Deserialize)]
#[non_exhaustive]
pub struct Video {
/// The file ID of the video.
pub file_id: file::Id,
/// The unique ID of the video.
pub file_unique_id: String,
/// The width of the video.
pub width: u32,
/// The height of the video.
pub height: u32,
/// The duration of the video.
pub duration: u32,
/// The thumb of the video.
pub thumb: Option<PhotoSize>,
/// The original file name as defined by sender.
pub file_name: Option<String>,
/// The MIME type of the video.
pub mime_type: Option<String>,
/// The file size of the video.
pub file_size: Option<u32>,
}