1 2 3 4 5 6 7 8 9 10
use serde::Deserialize; #[derive(Debug, Deserialize)] #[serde(rename_all = "PascalCase")] pub struct ReputationEvent { pub alliance: Option<f64>, pub empire: Option<f64>, pub federation: Option<f64>, pub independent: Option<f64>, }