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