1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//
// -----------------------------------------------------------------------------
// THIS FILE WAS @generated AUTOMATICALLY. DO NOT MODIFY THIS FILE MANUALLY.
// -----------------------------------------------------------------------------
//
/// Defines the XsdunsignedInt Class.
///
/// Available in Office2021 and above.
///
/// When the object is serialized out as xml, it's qualified name is xltc2:checksum.
pub type XsdunsignedInt = crate::simple_type::UInt32Value;
/// Defines the CommentHyperlink Class.
///
/// Available in Office2021 and above.
///
/// When the object is serialized out as xml, it's qualified name is xltc2:hyperlink.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xltc2:CT_CommentHyperlink/xltc2:hyperlink")]
pub struct CommentHyperlink {
/// startIndex
///
/// Available in Office2021 and above.
///
/// Represents the following attribute in the schema: :startIndex
#[sdk(attr(qname = ":startIndex"))]
pub start_index: crate::simple_type::UInt32Value,
/// length
///
/// Available in Office2021 and above.
///
/// Represents the following attribute in the schema: :length
#[sdk(attr(qname = ":length"))]
pub length: crate::simple_type::UInt32Value,
/// url
///
/// Available in Office2021 and above.
///
/// Represents the following attribute in the schema: :url
#[sdk(attr(qname = ":url"))]
pub url: crate::simple_type::StringValue,
/// _
#[sdk(child(qname = "x:CT_ExtensionList/xltc2:extLst"))]
pub extension_list: Option<ExtensionList>,
}
/// Defines the ExtensionList Class.
///
/// Available in Office2021 and above.
///
/// When the object is serialized out as xml, it's qualified name is xltc2:extLst.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x:CT_ExtensionList/xltc2:extLst")]
pub struct ExtensionList {
///Extension.
#[sdk(child(qname = "x:CT_Extension/x:ext"))]
pub extension: Vec<crate::schemas::schemas_openxmlformats_org_spreadsheetml_2006_main::Extension>,
}