sideko_rest_api 0.9.2

Rust API Client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// NewSpaceComponent
#[derive(serde::Serialize, serde::Deserialize, Debug, Default, Clone)]
pub struct NewSpaceComponent {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub icon: Option<String>,
    pub label: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub slug: Option<String>,
    /// Constant denoting topbar component as a space
    #[serde(rename = "type")]
    pub type_: crate::models::ComponentTypeSpaceEnum,
}