sideko_rest_api 0.9.2

Rust API Client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// NewSidebarItem
#[derive(serde::Serialize, serde::Deserialize, Debug, Default, Clone)]
pub struct NewSidebarItem {
    pub component: crate::models::NewSidebarItemComponent,
    /// Parent sidebar item to nest new sidebar item within
    #[serde(skip_serializing_if = "Option::is_none")]
    pub parent_id: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub position: Option<crate::models::NewSidebarItemPositionEnum>,
    /// Space in which the new sidebar item should be added. If not provided the item will be added to the sidebar in the default space
    #[serde(skip_serializing_if = "Option::is_none")]
    pub space_id: Option<String>,
}