use super::Chat; use serde::{Deserialize, Serialize}; /// This object represents a message about a forwarded story in the chat. Currently holds no information. /// # Documentation /// #[derive(Debug, Default, Clone, PartialEq, Deserialize, Serialize)] pub struct Story { /// Chat that posted the story pub chat: Chat, /// Unique identifier for the story in the chat pub id: i64, }