sideko_rest_api 0.9.2

Rust API Client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// Page
#[derive(serde::Serialize, serde::Deserialize, Debug, Default, Clone)]
pub struct Page {
    pub ask_ai: bool,
    pub created_at: String,
    /// lucide icon name for guide, see https://lucide.dev/icons/ for complete list of options
    #[serde(deserialize_with = "crate::core::patch::deserialize_required_nullable")]
    pub icon: Option<String>,
    pub id: String,
    pub label: String,
    pub slug: String,
    pub table_of_contents: bool,
    /// Constant denoting sidebar component as a page
    #[serde(rename = "type")]
    pub type_: crate::models::ComponentTypePageEnum,
    pub mdx: String,
}