pub type XsdunsignedInt = crate::simple_type::UInt32Value;
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xltc2:hyperlink")]
pub struct CommentHyperlink {
#[sdk(attr(qname = ":startIndex"))]
pub start_index: crate::simple_type::UInt32Value,
#[sdk(attr(qname = ":length"))]
pub length: crate::simple_type::UInt32Value,
#[sdk(attr(qname = ":url"))]
pub url: crate::simple_type::StringValue,
#[sdk(child(qname = "xltc2:extLst"))]
pub extension_list: Option<ExtensionList>,
}
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xltc2:extLst")]
pub struct ExtensionList {
#[sdk(child(qname = "x:ext"))]
pub extension: Vec<crate::schemas::x::Extension>,
}