/// ExternalLinkComponent
#[derive(serde::Serialize, serde::Deserialize, Debug, Default, Clone)]
pub struct ExternalLinkComponent {
pub created_at: String,
pub href: 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,
/// Constant denoting sidebar component as a external link
#[serde(rename = "type")]
pub type_: crate::models::ComponentTypeExternalLinkEnum,
}