Skip to main content

clickup_cli/models/
folder.rs

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