use super::GrandCompany; use chrono::{DateTime, Utc}; use ffxiv_types::World; use url::Url; use std::collections::BTreeMap; #[derive(Debug, Serialize, Deserialize)] pub struct FreeCompany { #[serde(with = "crate::util::serde::u64_str")] pub id: u64, pub name: String, pub world: World, pub slogan: String, #[serde(with = "crate::util::serde::multi_url")] pub crest: Vec, pub grand_company: GrandCompany, pub active_members: u16, pub rank: u8, pub pvp_rankings: PvpRankings, pub formed: DateTime, pub estate: Option, pub reputation: BTreeMap, } #[derive(Debug, Serialize, Deserialize)] pub struct PvpRankings { pub weekly: Option, pub monthly: Option, } #[derive(Debug, Serialize, Deserialize)] pub struct Estate { pub name: String, pub address: String, pub greeting: String, }