1#[allow(unused_imports)] 2use serde_json::Value; 3 4#[derive(Debug, Serialize, Deserialize)] 5pub struct FsaResult { 6 /// True if the result is pinned to prevent automatic removal. 7 #[serde(rename = "pinned")] 8 pub pinned: bool, 9}