/// PageComponent
#[derive(serde::Serialize, serde::Deserialize, Debug, Default, Clone)]
pub struct PageComponent {
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,
}