1 2 3 4 5 6 7 8 9 10
use serde::Deserialize; /// Represents an Onspring application. #[derive(Debug, Clone, Deserialize)] #[serde(rename_all = "camelCase")] pub struct App { pub href: Option<String>, pub id: i32, pub name: Option<String>, }