Skip to main content

clickup_cli/models/
workspace.rs

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