useserde::Deserialize;/// Represents a language object from the Wattpad API.
#[derive(Debug, Deserialize, Clone)]#[serde(rename_all ="camelCase")]pubstructLanguage{/// The unique numerical identifier of the language.
pubid:Option<u64>,
/// The full name of the language (e.g., "English").
pubname:Option<String>,
}