1 2 3 4 5 6 7 8 9 10 11
use serde::Deserialize; use crate::models::Id; /// A bot information. #[derive(Debug, Deserialize, Clone, PartialEq)] pub struct BotInformation { /// Bot owner id. #[serde(rename = "owner")] pub owner_id: Id, }