useserde::Deserialize;usecrate::models::Id;/// Represents a public bot.
#[derive(Clone, Debug, Deserialize)]pubstructPublicBot{/// The ID of the bot.
#[serde(rename ="_id")]pubid: Id,
/// The username of the bot.
pubusername: String,
/// The avatar of the bot.
pubavatar:Option<String>,
/// The description of the bot.
pubdescription:Option<String>,
}