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