/// TitleComponent
#[derive(serde::Serialize, serde::Deserialize, Debug, Default, Clone)]
pub struct TitleComponent {
pub created_at: String,
pub id: String,
pub label: String,
/// Constant denoting sidebar component as a title
#[serde(rename = "type")]
pub type_: crate::models::ComponentTypeTitleEnum,
}