/// DocProjectMetadata
#[derive(serde::Serialize, serde::Deserialize, Debug, Default, Clone)]
pub struct DocProjectMetadata {
#[serde(deserialize_with = "crate::core::patch::deserialize_required_nullable")]
pub description: Option<String>,
pub llms_txt: bool,
#[serde(deserialize_with = "crate::core::patch::deserialize_required_nullable")]
pub title: Option<String>,
}