1 2 3 4 5 6 7 8 9
use serde::Deserialize; #[derive(Debug, Deserialize)] pub struct Folder { pub id: String, pub name: String, pub task_count: Option<String>, pub lists: Option<Vec<serde_json::Value>>, }