ooxmlsdk 0.8.0

Open XML SDK for Rust
Documentation
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
//
// -----------------------------------------------------------------------------
//  THIS FILE WAS @generated AUTOMATICALLY. DO NOT MODIFY THIS FILE MANUALLY.
// -----------------------------------------------------------------------------
//

#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum DisplayBlanksAsValues {
  #[sdk(rename = "span")]
  #[default]
  Span,
  #[sdk(rename = "gap")]
  Gap,
  #[sdk(rename = "zero")]
  Zero,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum SparklineAxisMinMaxValues {
  #[sdk(rename = "individual")]
  #[default]
  Individual,
  #[sdk(rename = "group")]
  Group,
  #[sdk(rename = "custom")]
  Custom,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum SparklineTypeValues {
  #[sdk(rename = "line")]
  #[default]
  Line,
  #[sdk(rename = "column")]
  Column,
  #[sdk(rename = "stacked")]
  Stacked,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum PivotShowAsValues {
  #[sdk(rename = "percentOfParent")]
  #[default]
  PercentOfParent,
  #[sdk(rename = "percentOfParentRow")]
  PercentOfParentRow,
  #[sdk(rename = "percentOfParentCol")]
  PercentOfParentColumn,
  #[sdk(rename = "percentOfRunningTotal")]
  PercentOfRunningTotal,
  #[sdk(rename = "rankAscending")]
  RankAscending,
  #[sdk(rename = "rankDescending")]
  RankDescending,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum DataBarDirectionValues {
  #[sdk(rename = "context")]
  #[default]
  Context,
  #[sdk(rename = "leftToRight")]
  LeftToRight,
  #[sdk(rename = "rightToLeft")]
  RightToLeft,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum DataBarAxisPositionValues {
  #[sdk(rename = "automatic")]
  #[default]
  Automatic,
  #[sdk(rename = "middle")]
  Middle,
  #[sdk(rename = "none")]
  None,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum ConditionalFormattingValueObjectTypeValues {
  #[sdk(rename = "num")]
  #[default]
  Numeric,
  #[sdk(rename = "percent")]
  Percent,
  #[sdk(rename = "max")]
  Max,
  #[sdk(rename = "min")]
  Min,
  #[sdk(rename = "formula")]
  Formula,
  #[sdk(rename = "percentile")]
  Percentile,
  #[sdk(rename = "autoMin")]
  AutoMin,
  #[sdk(rename = "autoMax")]
  AutoMax,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum IconSetTypeValues {
  #[sdk(rename = "3Arrows")]
  #[default]
  ThreeArrows,
  #[sdk(rename = "3ArrowsGray")]
  ThreeArrowsGray,
  #[sdk(rename = "3Flags")]
  ThreeFlags,
  #[sdk(rename = "3TrafficLights1")]
  ThreeTrafficLights1,
  #[sdk(rename = "3TrafficLights2")]
  ThreeTrafficLights2,
  #[sdk(rename = "3Signs")]
  ThreeSigns,
  #[sdk(rename = "3Symbols")]
  ThreeSymbols,
  #[sdk(rename = "3Symbols2")]
  ThreeSymbols2,
  #[sdk(rename = "4Arrows")]
  FourArrows,
  #[sdk(rename = "4ArrowsGray")]
  FourArrowsGray,
  #[sdk(rename = "4RedToBlack")]
  FourRedToBlack,
  #[sdk(rename = "4Rating")]
  FourRating,
  #[sdk(rename = "4TrafficLights")]
  FourTrafficLights,
  #[sdk(rename = "5Arrows")]
  FiveArrows,
  #[sdk(rename = "5ArrowsGray")]
  FiveArrowsGray,
  #[sdk(rename = "5Rating")]
  FiveRating,
  #[sdk(rename = "5Quarters")]
  FiveQuarters,
  #[sdk(rename = "3Stars")]
  ThreeStars,
  #[sdk(rename = "3Triangles")]
  ThreeTriangles,
  #[sdk(rename = "5Boxes")]
  FiveBoxes,
  #[sdk(rename = "NoIcons")]
  NoIcons,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum PivotEditValueTypeValues {
  #[sdk(rename = "number")]
  #[default]
  Number,
  #[sdk(rename = "dateTime")]
  DateTime,
  #[sdk(rename = "string")]
  String,
  #[sdk(rename = "boolean")]
  Boolean,
  #[sdk(rename = "error")]
  Error,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum AllocationMethodValues {
  #[sdk(rename = "equalAllocation")]
  #[default]
  EqualAllocation,
  #[sdk(rename = "equalIncrement")]
  EqualIncrement,
  #[sdk(rename = "weightedAllocation")]
  WeightedAllocation,
  #[sdk(rename = "weightedIncrement")]
  WeightedIncrement,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum SlicerStyleTypeValues {
  #[sdk(rename = "unselectedItemWithData")]
  #[default]
  UnselectedItemWithData,
  #[sdk(rename = "selectedItemWithData")]
  SelectedItemWithData,
  #[sdk(rename = "unselectedItemWithNoData")]
  UnselectedItemWithNoData,
  #[sdk(rename = "selectedItemWithNoData")]
  SelectedItemWithNoData,
  #[sdk(rename = "hoveredUnselectedItemWithData")]
  HoveredUnselectedItemWithData,
  #[sdk(rename = "hoveredSelectedItemWithData")]
  HoveredSelectedItemWithData,
  #[sdk(rename = "hoveredUnselectedItemWithNoData")]
  HoveredUnselectedItemWithNoData,
  #[sdk(rename = "hoveredSelectedItemWithNoData")]
  HoveredSelectedItemWithNoData,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum CheckedValues {
  #[sdk(rename = "Unchecked")]
  #[default]
  Unchecked,
  #[sdk(rename = "Checked")]
  Checked,
  #[sdk(rename = "Mixed")]
  Mixed,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum DropStyleValues {
  #[sdk(rename = "combo")]
  #[default]
  Combo,
  #[sdk(rename = "comboedit")]
  ComboEdit,
  #[sdk(rename = "simple")]
  Simple,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum SelectionTypeValues {
  #[sdk(rename = "single")]
  #[default]
  Single,
  #[sdk(rename = "multi")]
  Multiple,
  #[sdk(rename = "extended")]
  Extended,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum TextHorizontalAlignmentValues {
  #[sdk(rename = "left")]
  #[default]
  Left,
  #[sdk(rename = "center")]
  Center,
  #[sdk(rename = "right")]
  Right,
  #[sdk(rename = "justify")]
  Justify,
  #[sdk(rename = "distributed")]
  Distributed,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum TextVerticalAlignmentValues {
  #[sdk(rename = "top")]
  #[default]
  Top,
  #[sdk(rename = "center")]
  Center,
  #[sdk(rename = "bottom")]
  Bottom,
  #[sdk(rename = "justify")]
  Justify,
  #[sdk(rename = "distributed")]
  Distributed,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum EditValidationValues {
  #[sdk(rename = "text")]
  #[default]
  Text,
  #[sdk(rename = "integer")]
  Integer,
  #[sdk(rename = "number")]
  Number,
  #[sdk(rename = "reference")]
  Reference,
  #[sdk(rename = "formula")]
  Formula,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum OlapSlicerCacheSortOrderValues {
  #[sdk(rename = "natural")]
  #[default]
  Natural,
  #[sdk(rename = "ascending")]
  Ascending,
  #[sdk(rename = "descending")]
  Descending,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum TabularSlicerCacheSortOrderValues {
  #[sdk(rename = "ascending")]
  #[default]
  Ascending,
  #[sdk(rename = "descending")]
  Descending,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum SlicerCacheCrossFilterValues {
  #[sdk(rename = "none")]
  #[default]
  None,
  #[sdk(rename = "showItemsWithDataAtTop")]
  ShowItemsWithDataAtTop,
  #[sdk(rename = "showItemsWithNoData")]
  ShowItemsWithNoData,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum ObjectTypeValues {
  #[sdk(rename = "Button")]
  #[default]
  Button,
  #[sdk(rename = "CheckBox")]
  CheckBox,
  #[sdk(rename = "Drop")]
  Drop,
  #[sdk(rename = "GBox")]
  GroupBox,
  #[sdk(rename = "Label")]
  Label,
  #[sdk(rename = "List")]
  List,
  #[sdk(rename = "Radio")]
  Radio,
  #[sdk(rename = "Scroll")]
  Scroll,
  #[sdk(rename = "Spin")]
  Spin,
  #[sdk(rename = "EditBox")]
  EditBox,
  #[sdk(rename = "Dialog")]
  Dialog,
}
/// Defines the ConditionalFormattings Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:conditionalFormattings")]
pub struct ConditionalFormattings {
  /// Defines the ConditionalFormatting Class.
  #[sdk(child(qname = "x14:conditionalFormatting"))]
  pub conditional_formatting: Vec<ConditionalFormatting>,
}
/// Defines the DataValidations Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:dataValidations")]
pub struct DataValidations {
  pub xmlns: Vec<crate::common::XmlNamespace>,
  /// disablePrompts
  #[sdk(attr(qname = ":disablePrompts"))]
  pub disable_prompts: Option<crate::simple_type::BooleanValue>,
  /// xWindow
  #[sdk(attr(qname = ":xWindow"))]
  pub x_window: Option<crate::simple_type::UInt32Value>,
  /// yWindow
  #[sdk(attr(qname = ":yWindow"))]
  pub y_window: Option<crate::simple_type::UInt32Value>,
  /// count
  #[sdk(attr(qname = ":count"))]
  pub count: Option<crate::simple_type::UInt32Value>,
  /// Defines the DataValidation Class.
  #[sdk(child(qname = "x14:dataValidation"))]
  pub data_validation: Vec<DataValidation>,
}
/// Defines the SparklineGroups Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:sparklineGroups")]
pub struct SparklineGroups {
  pub xmlns: Vec<crate::common::XmlNamespace>,
  /// Defines the SparklineGroup Class.
  #[sdk(child(qname = "x14:sparklineGroup"))]
  pub sparkline_group: Vec<SparklineGroup>,
}
/// Defines the SlicerList Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:slicerList")]
pub struct SlicerList {
  /// Defines the SlicerRef Class.
  #[sdk(child(qname = "x14:slicer"))]
  pub slicer_ref: Vec<SlicerRef>,
}
/// Defines the ProtectedRanges Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:protectedRanges")]
pub struct ProtectedRanges {
  /// Defines the ProtectedRange Class.
  #[sdk(child(qname = "x14:protectedRange"))]
  pub protected_range: Vec<ProtectedRange>,
}
/// Defines the IgnoredErrors Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:ignoredErrors")]
pub struct IgnoredErrors {
  /// Defines the IgnoredError Class.
  #[sdk(child(qname = "x14:ignoredError"))]
  pub ignored_error: Vec<IgnoredError>,
  /// Defines the ExtensionList Class.
  #[sdk(child(qname = "x14:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the DefinedNames Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:definedNames")]
pub struct DefinedNames {
  /// Defines the DefinedName Class.
  #[sdk(child(qname = "x14:definedName"))]
  pub defined_name: Vec<DefinedName>,
}
/// Defines the PivotCaches Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:pivotCaches")]
pub struct PivotCaches {
  /// PivotCache.
  #[sdk(child(qname = "x:pivotCache"))]
  pub pivot_cache: Vec<crate::schemas::x::PivotCache>,
}
/// Defines the SlicerCaches Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:slicerCaches")]
pub struct SlicerCaches {
  /// Defines the SlicerCache Class.
  #[sdk(child(qname = "x14:slicerCache"))]
  pub slicer_cache: Vec<SlicerCache>,
}
/// Defines the WorkbookProperties Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:workbookPr")]
pub struct WorkbookProperties {
  /// defaultImageDpi
  #[sdk(attr(qname = ":defaultImageDpi"))]
  pub default_image_dpi: Option<crate::simple_type::UInt32Value>,
  /// discardImageEditData
  #[sdk(attr(qname = ":discardImageEditData"))]
  pub discard_image_edit_data: Option<crate::simple_type::BooleanValue>,
  /// accuracyVersion
  #[sdk(attr(qname = ":accuracyVersion"))]
  pub accuracy_version: Option<crate::simple_type::UInt32Value>,
}
/// Defines the CalculatedMember Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:calculatedMember")]
pub struct CalculatedMember {
  /// displayFolder
  #[sdk(attr(qname = ":displayFolder"))]
  pub display_folder: Option<crate::simple_type::StringValue>,
  /// flattenHierarchies
  #[sdk(attr(qname = ":flattenHierarchies"))]
  pub flatten_hierarchies: Option<crate::simple_type::BooleanValue>,
  /// dynamicSet
  #[sdk(attr(qname = ":dynamicSet"))]
  pub dynamic_set: Option<crate::simple_type::BooleanValue>,
  /// hierarchizeDistinct
  #[sdk(attr(qname = ":hierarchizeDistinct"))]
  pub hierarchize_distinct: Option<crate::simple_type::BooleanValue>,
  /// mdxLong
  #[sdk(attr(qname = ":mdxLong"))]
  pub mdx_long: Option<crate::simple_type::StringValue>,
  /// Defines the TupleSet Class.
  #[sdk(child(qname = "x14:tupleSet"))]
  pub tuple_set: Option<std::boxed::Box<TupleSet>>,
}
/// Defines the CacheHierarchy Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:cacheHierarchy")]
pub struct CacheHierarchy {
  /// flattenHierarchies
  #[sdk(attr(qname = ":flattenHierarchies"))]
  pub flatten_hierarchies: Option<crate::simple_type::BooleanValue>,
  /// measuresSet
  #[sdk(attr(qname = ":measuresSet"))]
  pub measures_set: Option<crate::simple_type::BooleanValue>,
  /// hierarchizeDistinct
  #[sdk(attr(qname = ":hierarchizeDistinct"))]
  pub hierarchize_distinct: Option<crate::simple_type::BooleanValue>,
  /// ignore
  #[sdk(attr(qname = ":ignore"))]
  pub ignore: Option<crate::simple_type::BooleanValue>,
  /// Defines the SetLevels Class.
  #[sdk(child(qname = "x14:setLevels"))]
  pub set_levels: Option<SetLevels>,
}
/// Defines the DataField Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:dataField")]
pub struct DataField {
  /// pivotShowAs
  #[sdk(attr(qname = ":pivotShowAs"))]
  pub pivot_show_as: Option<PivotShowAsValues>,
  /// sourceField
  #[sdk(attr(qname = ":sourceField"))]
  pub source_field: Option<crate::simple_type::UInt32Value>,
  /// uniqueName
  #[sdk(attr(qname = ":uniqueName"))]
  pub unique_name: Option<crate::simple_type::StringValue>,
}
/// Defines the PivotField Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:pivotField")]
pub struct PivotField {
  /// fillDownLabels
  #[sdk(attr(qname = ":fillDownLabels"))]
  pub fill_down_labels: Option<crate::simple_type::BooleanValue>,
  /// ignore
  #[sdk(attr(qname = ":ignore"))]
  pub ignore: Option<crate::simple_type::BooleanValue>,
}
/// Defines the PivotTableDefinition Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:pivotTableDefinition")]
pub struct PivotTableDefinition {
  pub xmlns: Vec<crate::common::XmlNamespace>,
  /// fillDownLabelsDefault
  #[sdk(attr(qname = ":fillDownLabelsDefault"))]
  pub fill_down_labels_default: Option<crate::simple_type::BooleanValue>,
  /// visualTotalsForSets
  #[sdk(attr(qname = ":visualTotalsForSets"))]
  pub visual_totals_for_sets: Option<crate::simple_type::BooleanValue>,
  /// calculatedMembersInFilters
  #[sdk(attr(qname = ":calculatedMembersInFilters"))]
  pub calculated_members_in_filters: Option<crate::simple_type::BooleanValue>,
  /// altText
  #[sdk(attr(qname = ":altText"))]
  pub alt_text: Option<crate::simple_type::StringValue>,
  /// altTextSummary
  #[sdk(attr(qname = ":altTextSummary"))]
  pub alt_text_summary: Option<crate::simple_type::StringValue>,
  /// enableEdit
  #[sdk(attr(qname = ":enableEdit"))]
  pub enable_edit: Option<crate::simple_type::BooleanValue>,
  /// autoApply
  #[sdk(attr(qname = ":autoApply"))]
  pub auto_apply: Option<crate::simple_type::BooleanValue>,
  /// allocationMethod
  #[sdk(attr(qname = ":allocationMethod"))]
  pub allocation_method: Option<AllocationMethodValues>,
  /// weightExpression
  #[sdk(attr(qname = ":weightExpression"))]
  pub weight_expression: Option<crate::simple_type::StringValue>,
  /// hideValuesRow
  #[sdk(attr(qname = ":hideValuesRow"))]
  pub hide_values_row: Option<crate::simple_type::BooleanValue>,
  /// Defines the PivotEdits Class.
  #[sdk(child(qname = "x14:pivotEdits"))]
  pub pivot_edits: Option<PivotEdits>,
  /// Defines the PivotChanges Class.
  #[sdk(child(qname = "x14:pivotChanges"))]
  pub pivot_changes: Option<PivotChanges>,
  /// Defines the ConditionalFormats Class.
  #[sdk(child(qname = "x14:conditionalFormats"))]
  pub conditional_formats: Option<ConditionalFormats>,
}
/// Defines the PivotCacheDefinition Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:pivotCacheDefinition")]
pub struct PivotCacheDefinition {
  /// slicerData
  #[sdk(attr(qname = ":slicerData"))]
  pub slicer_data: Option<crate::simple_type::BooleanValue>,
  /// pivotCacheId
  #[sdk(attr(qname = ":pivotCacheId"))]
  pub pivot_cache_id: Option<crate::simple_type::UInt32Value>,
  /// supportSubqueryNonVisual
  #[sdk(attr(qname = ":supportSubqueryNonVisual"))]
  pub support_subquery_non_visual: Option<crate::simple_type::BooleanValue>,
  /// supportSubqueryCalcMem
  #[sdk(attr(qname = ":supportSubqueryCalcMem"))]
  pub support_subquery_calc_mem: Option<crate::simple_type::BooleanValue>,
  /// supportAddCalcMems
  #[sdk(attr(qname = ":supportAddCalcMems"))]
  pub support_add_calc_mems: Option<crate::simple_type::BooleanValue>,
}
/// Defines the Connection Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:connection")]
pub struct Connection {
  /// culture
  #[sdk(attr(qname = ":culture"))]
  pub culture: Option<crate::simple_type::StringValue>,
  /// embeddedDataId
  #[sdk(attr(qname = ":embeddedDataId"))]
  pub embedded_data_id: Option<crate::simple_type::StringValue>,
  /// Defines the CalculatedMembers Class.
  #[sdk(child(qname = "x14:calculatedMembers"))]
  pub calculated_members: Option<CalculatedMembers>,
}
/// Defines the Table Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:table")]
pub struct Table {
  /// altText
  #[sdk(attr(qname = ":altText"))]
  pub alt_text: Option<crate::simple_type::StringValue>,
  /// altTextSummary
  #[sdk(attr(qname = ":altTextSummary"))]
  pub alt_text_summary: Option<crate::simple_type::StringValue>,
}
/// Defines the SlicerStyles Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:slicerStyles")]
pub struct SlicerStyles {
  /// defaultSlicerStyle
  #[sdk(attr(qname = ":defaultSlicerStyle"))]
  pub default_slicer_style: crate::simple_type::StringValue,
  /// Defines the SlicerStyle Class.
  #[sdk(child(qname = "x14:slicerStyle"))]
  pub slicer_style: Vec<SlicerStyle>,
}
/// Defines the DifferentialFormats Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:dxfs")]
pub struct DifferentialFormats {
  /// Format Count
  #[sdk(attr(qname = ":count"))]
  pub count: Option<crate::simple_type::UInt32Value>,
  /// Formatting.
  #[sdk(child(qname = "x:dxf"))]
  pub differential_format: Vec<crate::schemas::x::DifferentialFormat>,
}
/// Defines the OleItem Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:oleItem")]
pub struct OleItem {
  /// name
  #[sdk(attr(qname = ":name"))]
  pub name: crate::simple_type::StringValue,
  /// icon
  #[sdk(attr(qname = ":icon"))]
  pub icon: Option<crate::simple_type::BooleanValue>,
  /// advise
  #[sdk(attr(qname = ":advise"))]
  pub advise: Option<crate::simple_type::BooleanValue>,
  /// preferPic
  #[sdk(attr(qname = ":preferPic"))]
  pub prefer_picture: Option<crate::simple_type::BooleanValue>,
  /// Defines the DdeValues Class.
  #[sdk(child(qname = "x14:values"))]
  pub dde_values: Option<DdeValues>,
}
/// Defines the PivotHierarchy Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:pivotHierarchy")]
pub struct PivotHierarchy {
  /// ignore
  #[sdk(attr(qname = ":ignore"))]
  pub ignore: Option<crate::simple_type::BooleanValue>,
}
/// Defines the CacheField Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:cacheField")]
pub struct CacheField {
  /// ignore
  #[sdk(attr(qname = ":ignore"))]
  pub ignore: Option<crate::simple_type::BooleanValue>,
}
/// Defines the Id Class.
pub type Id = crate::simple_type::StringValue;
/// Defines the IconFilter Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:iconFilter")]
pub struct IconFilter {
  /// iconSet
  #[sdk(attr(qname = ":iconSet"))]
  pub icon_set: IconSetTypeValues,
  /// iconId
  #[sdk(attr(qname = ":iconId"))]
  pub icon_id: crate::simple_type::UInt32Value,
}
/// Defines the Filter Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:filter")]
pub struct Filter {
  /// val
  #[sdk(attr(qname = ":val"))]
  pub val: Option<crate::simple_type::StringValue>,
}
/// Defines the CustomFilters Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:customFilters")]
pub struct CustomFilters {
  /// and
  #[sdk(attr(qname = ":and"))]
  pub and: Option<crate::simple_type::BooleanValue>,
  /// Defines the CustomFilter Class.
  #[sdk(child(qname = "x14:customFilter"))]
  pub custom_filter: Vec<CustomFilter>,
}
/// Defines the SortCondition Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:sortCondition")]
pub struct SortCondition {
  /// descending
  #[sdk(attr(qname = ":descending"))]
  pub descending: Option<crate::simple_type::BooleanValue>,
  /// sortBy
  #[sdk(attr(qname = ":sortBy"))]
  pub sort_by: Option<crate::schemas::x::SortByValues>,
  /// ref
  #[sdk(attr(qname = ":ref"))]
  pub reference: crate::simple_type::StringValue,
  /// customList
  #[sdk(attr(qname = ":customList"))]
  pub custom_list: Option<crate::simple_type::StringValue>,
  /// dxfId
  #[sdk(attr(qname = ":dxfId"))]
  pub format_id: Option<crate::simple_type::UInt32Value>,
  /// iconSet
  #[sdk(attr(qname = ":iconSet"))]
  pub icon_set: Option<IconSetTypeValues>,
  /// iconId
  #[sdk(attr(qname = ":iconId"))]
  pub icon_id: Option<crate::simple_type::UInt32Value>,
}
/// Defines the SourceConnection Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:sourceConnection")]
pub struct SourceConnection {
  /// name
  #[sdk(attr(qname = ":name"))]
  pub name: crate::simple_type::StringValue,
}
/// Defines the DatastoreItem Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:datastoreItem")]
pub struct DatastoreItem {
  pub xmlns: Vec<crate::common::XmlNamespace>,
  pub xml_header: crate::common::XmlHeaderType,
  /// id
  #[sdk(attr(qname = ":id"))]
  pub id: crate::simple_type::StringValue,
  /// Defines the ExtensionList Class.
  #[sdk(child(qname = "x14:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the FormControlProperties Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:formControlPr")]
pub struct FormControlProperties {
  pub xmlns: Vec<crate::common::XmlNamespace>,
  pub xml_header: crate::common::XmlHeaderType,
  /// objectType
  #[sdk(attr(qname = ":objectType"))]
  #[sdk(string_format(kind = "token"))]
  pub object_type: Option<ObjectTypeValues>,
  /// checked
  #[sdk(attr(qname = ":checked"))]
  #[sdk(string_format(kind = "token"))]
  pub checked: Option<CheckedValues>,
  /// colored
  #[sdk(attr(qname = ":colored"))]
  pub colored: Option<crate::simple_type::BooleanValue>,
  /// dropLines
  #[sdk(attr(qname = ":dropLines"))]
  pub drop_lines: Option<crate::simple_type::UInt32Value>,
  /// dropStyle
  #[sdk(attr(qname = ":dropStyle"))]
  #[sdk(string_format(kind = "token"))]
  pub drop_style: Option<DropStyleValues>,
  /// dx
  #[sdk(attr(qname = ":dx"))]
  pub scroll_bar_width: Option<crate::simple_type::UInt32Value>,
  /// firstButton
  #[sdk(attr(qname = ":firstButton"))]
  pub first_button: Option<crate::simple_type::BooleanValue>,
  /// fmlaGroup
  #[sdk(attr(qname = ":fmlaGroup"))]
  pub fmla_group: Option<crate::simple_type::StringValue>,
  /// fmlaLink
  #[sdk(attr(qname = ":fmlaLink"))]
  pub fmla_link: Option<crate::simple_type::StringValue>,
  /// fmlaRange
  #[sdk(attr(qname = ":fmlaRange"))]
  pub fmla_range: Option<crate::simple_type::StringValue>,
  /// fmlaTxbx
  #[sdk(attr(qname = ":fmlaTxbx"))]
  pub fmla_textbox: Option<crate::simple_type::StringValue>,
  /// horiz
  #[sdk(attr(qname = ":horiz"))]
  pub horizontal: Option<crate::simple_type::BooleanValue>,
  /// inc
  #[sdk(attr(qname = ":inc"))]
  pub incremental: Option<crate::simple_type::UInt32Value>,
  /// justLastX
  #[sdk(attr(qname = ":justLastX"))]
  pub just_last_x: Option<crate::simple_type::BooleanValue>,
  /// lockText
  #[sdk(attr(qname = ":lockText"))]
  pub lock_text: Option<crate::simple_type::BooleanValue>,
  /// max
  #[sdk(attr(qname = ":max"))]
  pub max: Option<crate::simple_type::UInt32Value>,
  /// min
  #[sdk(attr(qname = ":min"))]
  pub min: Option<crate::simple_type::UInt32Value>,
  /// multiSel
  #[sdk(attr(qname = ":multiSel"))]
  pub multiple_selection: Option<crate::simple_type::StringValue>,
  /// noThreeD
  #[sdk(attr(qname = ":noThreeD"))]
  pub no_three_d: Option<crate::simple_type::BooleanValue>,
  /// noThreeD2
  #[sdk(attr(qname = ":noThreeD2"))]
  pub no_three_d2: Option<crate::simple_type::BooleanValue>,
  /// page
  #[sdk(attr(qname = ":page"))]
  pub page: Option<crate::simple_type::UInt32Value>,
  /// sel
  #[sdk(attr(qname = ":sel"))]
  pub selected: Option<crate::simple_type::UInt32Value>,
  /// seltype
  #[sdk(attr(qname = ":seltype"))]
  #[sdk(string_format(kind = "token"))]
  pub selection_type: Option<SelectionTypeValues>,
  /// textHAlign
  #[sdk(attr(qname = ":textHAlign"))]
  pub text_horizontal_align: Option<TextHorizontalAlignmentValues>,
  /// textVAlign
  #[sdk(attr(qname = ":textVAlign"))]
  pub text_vertical_align: Option<TextVerticalAlignmentValues>,
  /// val
  #[sdk(attr(qname = ":val"))]
  pub val: Option<crate::simple_type::UInt32Value>,
  /// widthMin
  #[sdk(attr(qname = ":widthMin"))]
  pub minimum_width: Option<crate::simple_type::UInt32Value>,
  /// editVal
  #[sdk(attr(qname = ":editVal"))]
  #[sdk(string_format(kind = "token"))]
  pub edit_val: Option<EditValidationValues>,
  /// multiLine
  #[sdk(attr(qname = ":multiLine"))]
  pub multiple_lines: Option<crate::simple_type::BooleanValue>,
  /// verticalBar
  #[sdk(attr(qname = ":verticalBar"))]
  pub vertical_bar: Option<crate::simple_type::BooleanValue>,
  /// passwordEdit
  #[sdk(attr(qname = ":passwordEdit"))]
  pub password_edit: Option<crate::simple_type::BooleanValue>,
  /// Defines the ListItems Class.
  #[sdk(child(qname = "x14:itemLst"))]
  pub list_items: Option<std::boxed::Box<ListItems>>,
  /// Defines the ExtensionList Class.
  #[sdk(child(qname = "x14:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the Slicers Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:slicers")]
pub struct Slicers {
  pub xmlns: Vec<crate::common::XmlNamespace>,
  pub xml_header: crate::common::XmlHeaderType,
  /// Defines the Slicer Class.
  #[sdk(child(qname = "x14:slicer"))]
  pub slicer: Vec<Slicer>,
}
/// Defines the SlicerCacheDefinition Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:slicerCacheDefinition")]
pub struct SlicerCacheDefinition {
  pub xmlns: Vec<crate::common::XmlNamespace>,
  pub xml_header: crate::common::XmlHeaderType,
  /// name
  #[sdk(attr(qname = ":name"))]
  pub name: crate::simple_type::StringValue,
  /// sourceName
  #[sdk(attr(qname = ":sourceName"))]
  pub source_name: crate::simple_type::StringValue,
  /// Defines the SlicerCachePivotTables Class.
  #[sdk(child(qname = "x14:pivotTables"))]
  pub slicer_cache_pivot_tables: Option<SlicerCachePivotTables>,
  /// Defines the SlicerCacheData Class.
  #[sdk(child(qname = "x14:data"))]
  pub slicer_cache_data: Option<std::boxed::Box<SlicerCacheData>>,
  /// Defines the SlicerCacheDefinitionExtensionList Class.
  #[sdk(child(qname = "x14:extLst"))]
  pub slicer_cache_definition_extension_list: Option<SlicerCacheDefinitionExtensionList>,
}
/// Defines the ConditionalFormatting Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:conditionalFormatting")]
pub struct ConditionalFormatting {
  pub xmlns: Vec<crate::common::XmlNamespace>,
  /// pivot
  #[sdk(attr(qname = ":pivot"))]
  pub pivot: Option<crate::simple_type::BooleanValue>,
  /// Defines the ConditionalFormattingRule Class.
  #[sdk(child(qname = "x14:cfRule"))]
  pub conditional_formatting_rule: Vec<ConditionalFormattingRule>,
  /// Defines the ReferenceSequence Class.
  #[sdk(text_child(list, simple_type = "StringValue", qname = "xne:sqref"))]
  pub reference_sequence: Option<Vec<crate::simple_type::StringValue>>,
  /// Defines the ExtensionList Class.
  #[sdk(child(qname = "x14:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the ConditionalFormattingRule Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:cfRule")]
pub struct ConditionalFormattingRule {
  /// type
  #[sdk(attr(qname = ":type"))]
  pub r#type: Option<crate::schemas::x::ConditionalFormatValues>,
  /// priority
  #[sdk(attr(qname = ":priority"))]
  pub priority: Option<crate::simple_type::Int32Value>,
  /// stopIfTrue
  #[sdk(attr(qname = ":stopIfTrue"))]
  pub stop_if_true: Option<crate::simple_type::BooleanValue>,
  /// aboveAverage
  #[sdk(attr(qname = ":aboveAverage"))]
  pub above_average: Option<crate::simple_type::BooleanValue>,
  /// percent
  #[sdk(attr(qname = ":percent"))]
  pub percent: Option<crate::simple_type::BooleanValue>,
  /// bottom
  #[sdk(attr(qname = ":bottom"))]
  pub bottom: Option<crate::simple_type::BooleanValue>,
  /// operator
  #[sdk(attr(qname = ":operator"))]
  pub operator: Option<crate::schemas::x::ConditionalFormattingOperatorValues>,
  /// text
  #[sdk(attr(qname = ":text"))]
  pub text: Option<crate::simple_type::StringValue>,
  /// timePeriod
  #[sdk(attr(qname = ":timePeriod"))]
  pub time_period: Option<crate::schemas::x::TimePeriodValues>,
  /// rank
  #[sdk(attr(qname = ":rank"))]
  pub rank: Option<crate::simple_type::UInt32Value>,
  /// stdDev
  #[sdk(attr(qname = ":stdDev"))]
  pub standard_deviation: Option<crate::simple_type::Int32Value>,
  /// equalAverage
  #[sdk(attr(qname = ":equalAverage"))]
  pub equal_average: Option<crate::simple_type::BooleanValue>,
  /// activePresent
  #[sdk(attr(qname = ":activePresent"))]
  pub active_present: Option<crate::simple_type::BooleanValue>,
  /// id
  #[sdk(attr(qname = ":id"))]
  #[sdk(pattern(regex = "\\{[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}\\}"))]
  #[sdk(string_format(kind = "token"))]
  pub id: Option<crate::simple_type::StringValue>,
  /// Defines the Formula Class.
  #[sdk(text_child(simple_type = "StringValue", qname = "xne:f"))]
  pub formula: Vec<crate::schemas::xne::Formula>,
  /// Defines the ColorScale Class.
  #[sdk(child(qname = "x14:colorScale"))]
  pub color_scale: Option<ColorScale>,
  /// Defines the DataBar Class.
  #[sdk(child(qname = "x14:dataBar"))]
  pub data_bar: Option<std::boxed::Box<DataBar>>,
  /// Defines the IconSet Class.
  #[sdk(child(qname = "x14:iconSet"))]
  pub icon_set: Option<IconSet>,
  /// Defines the DifferentialType Class.
  #[sdk(child(qname = "x14:dxf"))]
  pub differential_type: Option<std::boxed::Box<DifferentialType>>,
  /// Defines the ExtensionList Class.
  #[sdk(child(qname = "x14:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the ExtensionList Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:extLst")]
pub struct ExtensionList {
  /// Extension.
  #[sdk(child(qname = "x:ext"))]
  pub extension: Vec<crate::schemas::x::Extension>,
}
/// Defines the DataValidation Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:dataValidation")]
pub struct DataValidation {
  /// type
  #[sdk(attr(qname = ":type"))]
  pub r#type: Option<crate::schemas::x::DataValidationValues>,
  /// errorStyle
  #[sdk(attr(qname = ":errorStyle"))]
  pub error_style: Option<crate::schemas::x::DataValidationErrorStyleValues>,
  /// imeMode
  #[sdk(attr(qname = ":imeMode"))]
  pub ime_mode: Option<crate::schemas::x::DataValidationImeModeValues>,
  /// operator
  #[sdk(attr(qname = ":operator"))]
  pub operator: Option<crate::schemas::x::DataValidationOperatorValues>,
  /// allowBlank
  #[sdk(attr(qname = ":allowBlank"))]
  pub allow_blank: Option<crate::simple_type::BooleanValue>,
  /// showDropDown
  #[sdk(attr(qname = ":showDropDown"))]
  pub show_drop_down: Option<crate::simple_type::BooleanValue>,
  /// showInputMessage
  #[sdk(attr(qname = ":showInputMessage"))]
  pub show_input_message: Option<crate::simple_type::BooleanValue>,
  /// showErrorMessage
  #[sdk(attr(qname = ":showErrorMessage"))]
  pub show_error_message: Option<crate::simple_type::BooleanValue>,
  /// errorTitle
  #[sdk(attr(qname = ":errorTitle"))]
  pub error_title: Option<crate::simple_type::StringValue>,
  /// error
  #[sdk(attr(qname = ":error"))]
  pub error: Option<crate::simple_type::StringValue>,
  /// promptTitle
  #[sdk(attr(qname = ":promptTitle"))]
  pub prompt_title: Option<crate::simple_type::StringValue>,
  /// prompt
  #[sdk(attr(qname = ":prompt"))]
  pub prompt: Option<crate::simple_type::StringValue>,
  /// Defines the DataValidationForumla1 Class.
  #[sdk(child(qname = "x14:formula1"))]
  pub data_validation_forumla1: Option<DataValidationForumla1>,
  /// Defines the DataValidationForumla2 Class.
  #[sdk(child(qname = "x14:formula2"))]
  pub data_validation_forumla2: Option<DataValidationForumla2>,
  /// Defines the ReferenceSequence Class.
  #[sdk(text_child(list, simple_type = "StringValue", qname = "xne:sqref"))]
  pub reference_sequence: Vec<crate::simple_type::StringValue>,
}
/// Defines the DataValidationForumla1 Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:formula1")]
pub struct DataValidationForumla1 {
  /// Defines the Formula Class.
  #[sdk(text_child(simple_type = "StringValue", qname = "xne:f"))]
  pub formula: crate::schemas::xne::Formula,
}
/// Defines the DataValidationForumla2 Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:formula2")]
pub struct DataValidationForumla2 {
  /// Defines the Formula Class.
  #[sdk(text_child(simple_type = "StringValue", qname = "xne:f"))]
  pub formula: crate::schemas::xne::Formula,
}
/// Defines the SparklineGroup Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:sparklineGroup")]
pub struct SparklineGroup {
  /// manualMax
  #[sdk(attr(qname = ":manualMax"))]
  pub manual_max: Option<crate::simple_type::DoubleValue>,
  /// manualMin
  #[sdk(attr(qname = ":manualMin"))]
  pub manual_min: Option<crate::simple_type::DoubleValue>,
  /// lineWeight
  #[sdk(attr(qname = ":lineWeight"))]
  pub line_weight: Option<crate::simple_type::DoubleValue>,
  /// type
  #[sdk(attr(qname = ":type"))]
  pub r#type: Option<SparklineTypeValues>,
  /// dateAxis
  #[sdk(attr(qname = ":dateAxis"))]
  pub date_axis: Option<crate::simple_type::BooleanValue>,
  /// displayEmptyCellsAs
  #[sdk(attr(qname = ":displayEmptyCellsAs"))]
  pub display_empty_cells_as: Option<DisplayBlanksAsValues>,
  /// markers
  #[sdk(attr(qname = ":markers"))]
  pub markers: Option<crate::simple_type::BooleanValue>,
  /// high
  #[sdk(attr(qname = ":high"))]
  pub high: Option<crate::simple_type::BooleanValue>,
  /// low
  #[sdk(attr(qname = ":low"))]
  pub low: Option<crate::simple_type::BooleanValue>,
  /// first
  #[sdk(attr(qname = ":first"))]
  pub first: Option<crate::simple_type::BooleanValue>,
  /// last
  #[sdk(attr(qname = ":last"))]
  pub last: Option<crate::simple_type::BooleanValue>,
  /// negative
  #[sdk(attr(qname = ":negative"))]
  pub negative: Option<crate::simple_type::BooleanValue>,
  /// displayXAxis
  #[sdk(attr(qname = ":displayXAxis"))]
  pub display_x_axis: Option<crate::simple_type::BooleanValue>,
  /// displayHidden
  #[sdk(attr(qname = ":displayHidden"))]
  pub display_hidden: Option<crate::simple_type::BooleanValue>,
  /// minAxisType
  #[sdk(attr(qname = ":minAxisType"))]
  pub min_axis_type: Option<SparklineAxisMinMaxValues>,
  /// maxAxisType
  #[sdk(attr(qname = ":maxAxisType"))]
  pub max_axis_type: Option<SparklineAxisMinMaxValues>,
  /// rightToLeft
  #[sdk(attr(qname = ":rightToLeft"))]
  pub right_to_left: Option<crate::simple_type::BooleanValue>,
  /// Defines the SeriesColor Class.
  #[sdk(child(qname = "x14:colorSeries"))]
  pub series_color: Option<SeriesColor>,
  /// Defines the NegativeColor Class.
  #[sdk(child(qname = "x14:colorNegative"))]
  pub negative_color: Option<NegativeColor>,
  /// Defines the AxisColor Class.
  #[sdk(child(qname = "x14:colorAxis"))]
  pub axis_color: Option<AxisColor>,
  /// Defines the MarkersColor Class.
  #[sdk(child(qname = "x14:colorMarkers"))]
  pub markers_color: Option<MarkersColor>,
  /// Defines the FirstMarkerColor Class.
  #[sdk(child(qname = "x14:colorFirst"))]
  pub first_marker_color: Option<FirstMarkerColor>,
  /// Defines the LastMarkerColor Class.
  #[sdk(child(qname = "x14:colorLast"))]
  pub last_marker_color: Option<LastMarkerColor>,
  /// Defines the HighMarkerColor Class.
  #[sdk(child(qname = "x14:colorHigh"))]
  pub high_marker_color: Option<HighMarkerColor>,
  /// Defines the LowMarkerColor Class.
  #[sdk(child(qname = "x14:colorLow"))]
  pub low_marker_color: Option<LowMarkerColor>,
  /// Defines the Formula Class.
  #[sdk(text_child(simple_type = "StringValue", qname = "xne:f"))]
  pub formula: Option<crate::schemas::xne::Formula>,
  /// Defines the Sparklines Class.
  #[sdk(child(qname = "x14:sparklines"))]
  pub sparklines: std::boxed::Box<Sparklines>,
}
/// Defines the SeriesColor Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:colorSeries")]
pub struct SeriesColor {
  /// Automatic
  #[sdk(attr(qname = ":auto"))]
  pub auto: Option<crate::simple_type::BooleanValue>,
  /// Index
  #[sdk(attr(qname = ":indexed"))]
  pub indexed: Option<crate::simple_type::UInt32Value>,
  /// Alpha Red Green Blue Color Value
  #[sdk(attr(qname = ":rgb"))]
  #[sdk(string_length(min = 4u32, max = 4u32))]
  pub rgb: Option<crate::simple_type::HexBinaryValue>,
  /// Theme Color
  #[sdk(attr(qname = ":theme"))]
  pub theme: Option<crate::simple_type::UInt32Value>,
  /// Tint
  #[sdk(attr(qname = ":tint"))]
  pub tint: Option<crate::simple_type::DoubleValue>,
}
/// Defines the NegativeColor Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:colorNegative")]
pub struct NegativeColor {
  /// Automatic
  #[sdk(attr(qname = ":auto"))]
  pub auto: Option<crate::simple_type::BooleanValue>,
  /// Index
  #[sdk(attr(qname = ":indexed"))]
  pub indexed: Option<crate::simple_type::UInt32Value>,
  /// Alpha Red Green Blue Color Value
  #[sdk(attr(qname = ":rgb"))]
  #[sdk(string_length(min = 4u32, max = 4u32))]
  pub rgb: Option<crate::simple_type::HexBinaryValue>,
  /// Theme Color
  #[sdk(attr(qname = ":theme"))]
  pub theme: Option<crate::simple_type::UInt32Value>,
  /// Tint
  #[sdk(attr(qname = ":tint"))]
  pub tint: Option<crate::simple_type::DoubleValue>,
}
/// Defines the AxisColor Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:colorAxis")]
pub struct AxisColor {
  /// Automatic
  #[sdk(attr(qname = ":auto"))]
  pub auto: Option<crate::simple_type::BooleanValue>,
  /// Index
  #[sdk(attr(qname = ":indexed"))]
  pub indexed: Option<crate::simple_type::UInt32Value>,
  /// Alpha Red Green Blue Color Value
  #[sdk(attr(qname = ":rgb"))]
  #[sdk(string_length(min = 4u32, max = 4u32))]
  pub rgb: Option<crate::simple_type::HexBinaryValue>,
  /// Theme Color
  #[sdk(attr(qname = ":theme"))]
  pub theme: Option<crate::simple_type::UInt32Value>,
  /// Tint
  #[sdk(attr(qname = ":tint"))]
  pub tint: Option<crate::simple_type::DoubleValue>,
}
/// Defines the MarkersColor Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:colorMarkers")]
pub struct MarkersColor {
  /// Automatic
  #[sdk(attr(qname = ":auto"))]
  pub auto: Option<crate::simple_type::BooleanValue>,
  /// Index
  #[sdk(attr(qname = ":indexed"))]
  pub indexed: Option<crate::simple_type::UInt32Value>,
  /// Alpha Red Green Blue Color Value
  #[sdk(attr(qname = ":rgb"))]
  #[sdk(string_length(min = 4u32, max = 4u32))]
  pub rgb: Option<crate::simple_type::HexBinaryValue>,
  /// Theme Color
  #[sdk(attr(qname = ":theme"))]
  pub theme: Option<crate::simple_type::UInt32Value>,
  /// Tint
  #[sdk(attr(qname = ":tint"))]
  pub tint: Option<crate::simple_type::DoubleValue>,
}
/// Defines the FirstMarkerColor Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:colorFirst")]
pub struct FirstMarkerColor {
  /// Automatic
  #[sdk(attr(qname = ":auto"))]
  pub auto: Option<crate::simple_type::BooleanValue>,
  /// Index
  #[sdk(attr(qname = ":indexed"))]
  pub indexed: Option<crate::simple_type::UInt32Value>,
  /// Alpha Red Green Blue Color Value
  #[sdk(attr(qname = ":rgb"))]
  #[sdk(string_length(min = 4u32, max = 4u32))]
  pub rgb: Option<crate::simple_type::HexBinaryValue>,
  /// Theme Color
  #[sdk(attr(qname = ":theme"))]
  pub theme: Option<crate::simple_type::UInt32Value>,
  /// Tint
  #[sdk(attr(qname = ":tint"))]
  pub tint: Option<crate::simple_type::DoubleValue>,
}
/// Defines the LastMarkerColor Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:colorLast")]
pub struct LastMarkerColor {
  /// Automatic
  #[sdk(attr(qname = ":auto"))]
  pub auto: Option<crate::simple_type::BooleanValue>,
  /// Index
  #[sdk(attr(qname = ":indexed"))]
  pub indexed: Option<crate::simple_type::UInt32Value>,
  /// Alpha Red Green Blue Color Value
  #[sdk(attr(qname = ":rgb"))]
  #[sdk(string_length(min = 4u32, max = 4u32))]
  pub rgb: Option<crate::simple_type::HexBinaryValue>,
  /// Theme Color
  #[sdk(attr(qname = ":theme"))]
  pub theme: Option<crate::simple_type::UInt32Value>,
  /// Tint
  #[sdk(attr(qname = ":tint"))]
  pub tint: Option<crate::simple_type::DoubleValue>,
}
/// Defines the HighMarkerColor Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:colorHigh")]
pub struct HighMarkerColor {
  /// Automatic
  #[sdk(attr(qname = ":auto"))]
  pub auto: Option<crate::simple_type::BooleanValue>,
  /// Index
  #[sdk(attr(qname = ":indexed"))]
  pub indexed: Option<crate::simple_type::UInt32Value>,
  /// Alpha Red Green Blue Color Value
  #[sdk(attr(qname = ":rgb"))]
  #[sdk(string_length(min = 4u32, max = 4u32))]
  pub rgb: Option<crate::simple_type::HexBinaryValue>,
  /// Theme Color
  #[sdk(attr(qname = ":theme"))]
  pub theme: Option<crate::simple_type::UInt32Value>,
  /// Tint
  #[sdk(attr(qname = ":tint"))]
  pub tint: Option<crate::simple_type::DoubleValue>,
}
/// Defines the LowMarkerColor Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:colorLow")]
pub struct LowMarkerColor {
  /// Automatic
  #[sdk(attr(qname = ":auto"))]
  pub auto: Option<crate::simple_type::BooleanValue>,
  /// Index
  #[sdk(attr(qname = ":indexed"))]
  pub indexed: Option<crate::simple_type::UInt32Value>,
  /// Alpha Red Green Blue Color Value
  #[sdk(attr(qname = ":rgb"))]
  #[sdk(string_length(min = 4u32, max = 4u32))]
  pub rgb: Option<crate::simple_type::HexBinaryValue>,
  /// Theme Color
  #[sdk(attr(qname = ":theme"))]
  pub theme: Option<crate::simple_type::UInt32Value>,
  /// Tint
  #[sdk(attr(qname = ":tint"))]
  pub tint: Option<crate::simple_type::DoubleValue>,
}
/// Defines the Color Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:color")]
pub struct Color {
  /// Automatic
  #[sdk(attr(qname = ":auto"))]
  pub auto: Option<crate::simple_type::BooleanValue>,
  /// Index
  #[sdk(attr(qname = ":indexed"))]
  pub indexed: Option<crate::simple_type::UInt32Value>,
  /// Alpha Red Green Blue Color Value
  #[sdk(attr(qname = ":rgb"))]
  #[sdk(string_length(min = 4u32, max = 4u32))]
  pub rgb: Option<crate::simple_type::HexBinaryValue>,
  /// Theme Color
  #[sdk(attr(qname = ":theme"))]
  pub theme: Option<crate::simple_type::UInt32Value>,
  /// Tint
  #[sdk(attr(qname = ":tint"))]
  pub tint: Option<crate::simple_type::DoubleValue>,
}
/// Defines the FillColor Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:fillColor")]
pub struct FillColor {
  /// Automatic
  #[sdk(attr(qname = ":auto"))]
  pub auto: Option<crate::simple_type::BooleanValue>,
  /// Index
  #[sdk(attr(qname = ":indexed"))]
  pub indexed: Option<crate::simple_type::UInt32Value>,
  /// Alpha Red Green Blue Color Value
  #[sdk(attr(qname = ":rgb"))]
  #[sdk(string_length(min = 4u32, max = 4u32))]
  pub rgb: Option<crate::simple_type::HexBinaryValue>,
  /// Theme Color
  #[sdk(attr(qname = ":theme"))]
  pub theme: Option<crate::simple_type::UInt32Value>,
  /// Tint
  #[sdk(attr(qname = ":tint"))]
  pub tint: Option<crate::simple_type::DoubleValue>,
}
/// Defines the BorderColor Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:borderColor")]
pub struct BorderColor {
  /// Automatic
  #[sdk(attr(qname = ":auto"))]
  pub auto: Option<crate::simple_type::BooleanValue>,
  /// Index
  #[sdk(attr(qname = ":indexed"))]
  pub indexed: Option<crate::simple_type::UInt32Value>,
  /// Alpha Red Green Blue Color Value
  #[sdk(attr(qname = ":rgb"))]
  #[sdk(string_length(min = 4u32, max = 4u32))]
  pub rgb: Option<crate::simple_type::HexBinaryValue>,
  /// Theme Color
  #[sdk(attr(qname = ":theme"))]
  pub theme: Option<crate::simple_type::UInt32Value>,
  /// Tint
  #[sdk(attr(qname = ":tint"))]
  pub tint: Option<crate::simple_type::DoubleValue>,
}
/// Defines the NegativeFillColor Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:negativeFillColor")]
pub struct NegativeFillColor {
  /// Automatic
  #[sdk(attr(qname = ":auto"))]
  pub auto: Option<crate::simple_type::BooleanValue>,
  /// Index
  #[sdk(attr(qname = ":indexed"))]
  pub indexed: Option<crate::simple_type::UInt32Value>,
  /// Alpha Red Green Blue Color Value
  #[sdk(attr(qname = ":rgb"))]
  #[sdk(string_length(min = 4u32, max = 4u32))]
  pub rgb: Option<crate::simple_type::HexBinaryValue>,
  /// Theme Color
  #[sdk(attr(qname = ":theme"))]
  pub theme: Option<crate::simple_type::UInt32Value>,
  /// Tint
  #[sdk(attr(qname = ":tint"))]
  pub tint: Option<crate::simple_type::DoubleValue>,
}
/// Defines the NegativeBorderColor Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:negativeBorderColor")]
pub struct NegativeBorderColor {
  /// Automatic
  #[sdk(attr(qname = ":auto"))]
  pub auto: Option<crate::simple_type::BooleanValue>,
  /// Index
  #[sdk(attr(qname = ":indexed"))]
  pub indexed: Option<crate::simple_type::UInt32Value>,
  /// Alpha Red Green Blue Color Value
  #[sdk(attr(qname = ":rgb"))]
  #[sdk(string_length(min = 4u32, max = 4u32))]
  pub rgb: Option<crate::simple_type::HexBinaryValue>,
  /// Theme Color
  #[sdk(attr(qname = ":theme"))]
  pub theme: Option<crate::simple_type::UInt32Value>,
  /// Tint
  #[sdk(attr(qname = ":tint"))]
  pub tint: Option<crate::simple_type::DoubleValue>,
}
/// Defines the BarAxisColor Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:axisColor")]
pub struct BarAxisColor {
  /// Automatic
  #[sdk(attr(qname = ":auto"))]
  pub auto: Option<crate::simple_type::BooleanValue>,
  /// Index
  #[sdk(attr(qname = ":indexed"))]
  pub indexed: Option<crate::simple_type::UInt32Value>,
  /// Alpha Red Green Blue Color Value
  #[sdk(attr(qname = ":rgb"))]
  #[sdk(string_length(min = 4u32, max = 4u32))]
  pub rgb: Option<crate::simple_type::HexBinaryValue>,
  /// Theme Color
  #[sdk(attr(qname = ":theme"))]
  pub theme: Option<crate::simple_type::UInt32Value>,
  /// Tint
  #[sdk(attr(qname = ":tint"))]
  pub tint: Option<crate::simple_type::DoubleValue>,
}
/// Defines the Sparklines Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:sparklines")]
pub struct Sparklines {
  /// Defines the Sparkline Class.
  #[sdk(child(qname = "x14:sparkline"))]
  pub sparkline: Vec<Sparkline>,
}
/// Defines the Sparkline Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:sparkline")]
pub struct Sparkline {
  /// Defines the Formula Class.
  #[sdk(text_child(simple_type = "StringValue", qname = "xne:f"))]
  pub formula: Option<crate::schemas::xne::Formula>,
  /// Defines the ReferenceSequence Class.
  #[sdk(text_child(list, simple_type = "StringValue", qname = "xne:sqref"))]
  pub reference_sequence: Vec<crate::simple_type::StringValue>,
}
/// Defines the SlicerRef Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:slicer")]
pub struct SlicerRef {
  /// id
  #[sdk(attr(qname = "r:id"))]
  pub id: crate::simple_type::StringValue,
}
/// Defines the SlicerCache Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:slicerCache")]
pub struct SlicerCache {
  /// id
  #[sdk(attr(qname = "r:id"))]
  pub id: crate::simple_type::StringValue,
}
/// Defines the DefinedName Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:definedName")]
pub struct DefinedName {
  /// name
  #[sdk(attr(qname = ":name"))]
  pub name: crate::simple_type::StringValue,
  /// Defines the ArgumentDescriptions Class.
  #[sdk(child(qname = "x14:argumentDescriptions"))]
  pub argument_descriptions: Option<ArgumentDescriptions>,
}
/// Defines the ArgumentDescriptions Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:argumentDescriptions")]
pub struct ArgumentDescriptions {
  /// count
  #[sdk(attr(qname = ":count"))]
  pub count: Option<crate::simple_type::UInt32Value>,
  /// Defines the ArgumentDescription Class.
  #[sdk(child(qname = "x14:argumentDescription"))]
  pub argument_description: Vec<ArgumentDescription>,
}
/// Defines the ArgumentDescription Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:argumentDescription")]
pub struct ArgumentDescription {
  /// index
  #[sdk(attr(qname = ":index"))]
  pub index: crate::simple_type::UInt32Value,
  #[sdk(text)]
  pub xml_content: Option<crate::simple_type::StringValue>,
}
/// Defines the TupleSet Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:tupleSet")]
pub struct TupleSet {
  /// rowCount
  #[sdk(attr(qname = ":rowCount"))]
  pub row_count: Option<crate::simple_type::UInt32Value>,
  /// columnCount
  #[sdk(attr(qname = ":columnCount"))]
  pub column_count: Option<crate::simple_type::UInt32Value>,
  /// Defines the TupleSetHeaders Class.
  #[sdk(child(qname = "x14:headers"))]
  pub tuple_set_headers: std::boxed::Box<TupleSetHeaders>,
  /// Defines the TupleSetRows Class.
  #[sdk(child(qname = "x14:rows"))]
  pub tuple_set_rows: std::boxed::Box<TupleSetRows>,
}
/// Defines the TupleSetHeaders Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:headers")]
pub struct TupleSetHeaders {
  /// Defines the TupleSetHeader Class.
  #[sdk(child(qname = "x14:header"))]
  pub tuple_set_header: Vec<TupleSetHeader>,
}
/// Defines the TupleSetRows Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:rows")]
pub struct TupleSetRows {
  /// Defines the TupleSetRow Class.
  #[sdk(child(qname = "x14:row"))]
  pub tuple_set_row: Vec<TupleSetRow>,
}
/// Defines the TupleSetHeader Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:header")]
pub struct TupleSetHeader {
  /// uniqueName
  #[sdk(attr(qname = ":uniqueName"))]
  pub unique_name: Option<crate::simple_type::StringValue>,
  /// hierarchyName
  #[sdk(attr(qname = ":hierarchyName"))]
  pub hierarchy_name: Option<crate::simple_type::StringValue>,
}
/// Defines the TupleSetRow Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:row")]
pub struct TupleSetRow {
  /// Defines the TupleSetRowItem Class.
  #[sdk(child(qname = "x14:rowItem"))]
  pub tuple_set_row_item: Vec<TupleSetRowItem>,
}
/// Defines the TupleSetRowItem Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:rowItem")]
pub struct TupleSetRowItem {
  /// u
  #[sdk(attr(qname = ":u"))]
  pub unique_name: Option<crate::simple_type::StringValue>,
  /// d
  #[sdk(attr(qname = ":d"))]
  pub display_name: Option<crate::simple_type::StringValue>,
}
/// Defines the SetLevel Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:setLevel")]
pub struct SetLevel {
  /// hierarchy
  #[sdk(attr(qname = ":hierarchy"))]
  pub hierarchy: crate::simple_type::Int32Value,
}
/// Defines the SetLevels Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:setLevels")]
pub struct SetLevels {
  /// count
  #[sdk(attr(qname = ":count"))]
  pub count: Option<crate::simple_type::UInt32Value>,
  /// Defines the SetLevel Class.
  #[sdk(child(qname = "x14:setLevel"))]
  pub set_level: Vec<SetLevel>,
}
/// Defines the ColorScale Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:colorScale")]
pub struct ColorScale {
  /// Defines the ConditionalFormattingValueObject Class.
  #[sdk(child(qname = "x14:cfvo"))]
  pub conditional_formatting_value_object: Vec<ConditionalFormattingValueObject>,
  /// Defines the Color Class.
  #[sdk(child(qname = "x14:color"))]
  pub color: Vec<Color>,
}
/// Defines the DataBar Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:dataBar")]
pub struct DataBar {
  /// minLength
  #[sdk(attr(qname = ":minLength"))]
  pub min_length: Option<crate::simple_type::UInt32Value>,
  /// maxLength
  #[sdk(attr(qname = ":maxLength"))]
  pub max_length: Option<crate::simple_type::UInt32Value>,
  /// showValue
  #[sdk(attr(qname = ":showValue"))]
  pub show_value: Option<crate::simple_type::BooleanValue>,
  /// border
  #[sdk(attr(qname = ":border"))]
  pub border: Option<crate::simple_type::BooleanValue>,
  /// gradient
  #[sdk(attr(qname = ":gradient"))]
  pub gradient: Option<crate::simple_type::BooleanValue>,
  /// direction
  #[sdk(attr(qname = ":direction"))]
  pub direction: Option<DataBarDirectionValues>,
  /// negativeBarColorSameAsPositive
  #[sdk(attr(qname = ":negativeBarColorSameAsPositive"))]
  pub negative_bar_color_same_as_positive: Option<crate::simple_type::BooleanValue>,
  /// negativeBarBorderColorSameAsPositive
  #[sdk(attr(qname = ":negativeBarBorderColorSameAsPositive"))]
  pub negative_bar_border_color_same_as_positive: Option<crate::simple_type::BooleanValue>,
  /// axisPosition
  #[sdk(attr(qname = ":axisPosition"))]
  pub axis_position: Option<DataBarAxisPositionValues>,
  /// Defines the ConditionalFormattingValueObject Class.
  #[sdk(child(qname = "x14:cfvo"))]
  pub conditional_formatting_value_object: Vec<ConditionalFormattingValueObject>,
  /// Defines the FillColor Class.
  #[sdk(child(qname = "x14:fillColor"))]
  pub fill_color: Option<FillColor>,
  /// Defines the BorderColor Class.
  #[sdk(child(qname = "x14:borderColor"))]
  pub border_color: Option<BorderColor>,
  /// Defines the NegativeFillColor Class.
  #[sdk(child(qname = "x14:negativeFillColor"))]
  pub negative_fill_color: Option<NegativeFillColor>,
  /// Defines the NegativeBorderColor Class.
  #[sdk(child(qname = "x14:negativeBorderColor"))]
  pub negative_border_color: Option<NegativeBorderColor>,
  /// Defines the BarAxisColor Class.
  #[sdk(child(qname = "x14:axisColor"))]
  pub bar_axis_color: Option<BarAxisColor>,
}
/// Defines the IconSet Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:iconSet")]
pub struct IconSet {
  /// iconSet
  #[sdk(attr(qname = ":iconSet"))]
  pub icon_set_types: Option<IconSetTypeValues>,
  /// showValue
  #[sdk(attr(qname = ":showValue"))]
  pub show_value: Option<crate::simple_type::BooleanValue>,
  /// percent
  #[sdk(attr(qname = ":percent"))]
  pub percent: Option<crate::simple_type::BooleanValue>,
  /// reverse
  #[sdk(attr(qname = ":reverse"))]
  pub reverse: Option<crate::simple_type::BooleanValue>,
  /// custom
  #[sdk(attr(qname = ":custom"))]
  pub custom: Option<crate::simple_type::BooleanValue>,
  /// Defines the ConditionalFormattingValueObject Class.
  #[sdk(child(qname = "x14:cfvo"))]
  pub conditional_formatting_value_object: Vec<ConditionalFormattingValueObject>,
  /// Defines the ConditionalFormattingIcon Class.
  #[sdk(child(qname = "x14:cfIcon"))]
  pub conditional_formatting_icon: Vec<ConditionalFormattingIcon>,
}
/// Defines the DifferentialType Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:dxf")]
pub struct DifferentialType {
  /// Font Properties
  #[sdk(child(qname = "x:font"))]
  pub font: Option<crate::schemas::x::Font>,
  /// Number Format
  #[sdk(child(qname = "x:numFmt"))]
  pub numbering_format: Option<crate::schemas::x::NumberingFormat>,
  /// Fill
  #[sdk(child(qname = "x:fill"))]
  pub fill: Option<std::boxed::Box<crate::schemas::x::Fill>>,
  /// Alignment
  #[sdk(child(qname = "x:alignment"))]
  pub alignment: Option<crate::schemas::x::Alignment>,
  /// Border Properties
  #[sdk(child(qname = "x:border"))]
  pub border: Option<std::boxed::Box<crate::schemas::x::Border>>,
  /// Protection Properties
  #[sdk(child(qname = "x:protection"))]
  pub protection: Option<crate::schemas::x::Protection>,
  /// Future Feature Data Storage Area
  #[sdk(child(qname = "x:extLst"))]
  pub extension_list: Option<crate::schemas::x::ExtensionList>,
}
/// Defines the ConditionalFormattingValueObject Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:cfvo")]
pub struct ConditionalFormattingValueObject {
  pub xml_other_attrs: Vec<crate::common::XmlOtherAttr>,
  /// type
  #[sdk(attr(qname = ":type"))]
  pub r#type: ConditionalFormattingValueObjectTypeValues,
  /// gte
  #[sdk(attr(qname = ":gte"))]
  pub greater_than_or_equal: Option<crate::simple_type::BooleanValue>,
  /// Defines the Formula Class.
  #[sdk(text_child(simple_type = "StringValue", qname = "xne:f"))]
  pub formula: Option<crate::schemas::xne::Formula>,
  /// Defines the ExtensionList Class.
  #[sdk(child(qname = "x14:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the ConditionalFormattingIcon Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:cfIcon")]
pub struct ConditionalFormattingIcon {
  /// iconSet
  #[sdk(attr(qname = ":iconSet"))]
  pub icon_set: IconSetTypeValues,
  /// iconId
  #[sdk(attr(qname = ":iconId"))]
  pub icon_id: crate::simple_type::UInt32Value,
}
/// Defines the PivotEdits Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:pivotEdits")]
pub struct PivotEdits {
  /// Defines the PivotEdit Class.
  #[sdk(child(qname = "x14:pivotEdit"))]
  pub pivot_edit: Vec<PivotEdit>,
}
/// Defines the PivotChanges Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:pivotChanges")]
pub struct PivotChanges {
  /// Defines the PivotChange Class.
  #[sdk(child(qname = "x14:pivotChange"))]
  pub pivot_change: Vec<PivotChange>,
}
/// Defines the ConditionalFormats Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:conditionalFormats")]
pub struct ConditionalFormats {
  /// count
  #[sdk(attr(qname = ":count"))]
  pub count: Option<crate::simple_type::UInt32Value>,
  /// Defines the ConditionalFormat Class.
  #[sdk(child(qname = "x14:conditionalFormat"))]
  pub conditional_format: Vec<ConditionalFormat>,
}
/// Defines the CalculatedMembers Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:calculatedMembers")]
pub struct CalculatedMembers {
  /// Calculated Members Count
  #[sdk(attr(qname = ":count"))]
  pub count: Option<crate::simple_type::UInt32Value>,
  /// Calculated Member.
  #[sdk(child(qname = "x:calculatedMember"))]
  pub calculated_member: Vec<crate::schemas::x::CalculatedMember>,
}
/// Defines the PivotEdit Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:pivotEdit")]
pub struct PivotEdit {
  /// Defines the PivotUserEdit Class.
  #[sdk(child(qname = "x14:userEdit"))]
  pub pivot_user_edit: std::boxed::Box<PivotUserEdit>,
  /// Defines the TupleItems Class.
  #[sdk(child(qname = "x14:tupleItems"))]
  pub tuple_items: std::boxed::Box<TupleItems>,
  /// Defines the PivotArea Class.
  #[sdk(child(qname = "x14:pivotArea"))]
  pub pivot_area: std::boxed::Box<PivotArea>,
  /// Defines the ExtensionList Class.
  #[sdk(child(qname = "x14:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the PivotUserEdit Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:userEdit")]
pub struct PivotUserEdit {
  #[sdk(
        choice(
            text_child(variant = Formula, qname = "xne:f"),
            child(variant = PivotEditValue, qname = "x14:editValue")
        )
    )]
  pub pivot_user_edit_choice: Option<PivotUserEditChoice>,
}
/// Defines the TupleItems Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:tupleItems")]
pub struct TupleItems {
  /// Defines the Xstring Class.
  #[sdk(text_child(simple_type = "StringValue", qname = "x14:tupleItem"))]
  pub xstring: Vec<Xstring>,
}
/// Defines the PivotArea Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:pivotArea")]
pub struct PivotArea {
  /// Field Index
  #[sdk(attr(qname = ":field"))]
  pub field: Option<crate::simple_type::Int32Value>,
  /// Rule Type
  #[sdk(attr(qname = ":type"))]
  pub r#type: Option<crate::schemas::x::PivotAreaValues>,
  /// Data Only
  #[sdk(attr(qname = ":dataOnly"))]
  pub data_only: Option<crate::simple_type::BooleanValue>,
  /// Labels Only
  #[sdk(attr(qname = ":labelOnly"))]
  pub label_only: Option<crate::simple_type::BooleanValue>,
  /// Include Row Grand Total
  #[sdk(attr(qname = ":grandRow"))]
  pub grand_row: Option<crate::simple_type::BooleanValue>,
  /// Include Column Grand Total
  #[sdk(attr(qname = ":grandCol"))]
  pub grand_column: Option<crate::simple_type::BooleanValue>,
  /// Cache Index
  #[sdk(attr(qname = ":cacheIndex"))]
  pub cache_index: Option<crate::simple_type::BooleanValue>,
  /// Outline
  #[sdk(attr(qname = ":outline"))]
  pub outline: Option<crate::simple_type::BooleanValue>,
  /// Offset Reference
  #[sdk(attr(qname = ":offset"))]
  pub offset: Option<crate::simple_type::StringValue>,
  /// Collapsed Levels Are Subtotals
  #[sdk(attr(qname = ":collapsedLevelsAreSubtotals"))]
  pub collapsed_levels_are_subtotals: Option<crate::simple_type::BooleanValue>,
  /// Axis
  #[sdk(attr(qname = ":axis"))]
  pub axis: Option<crate::schemas::x::PivotTableAxisValues>,
  /// Field Position
  #[sdk(attr(qname = ":fieldPosition"))]
  pub field_position: Option<crate::simple_type::UInt32Value>,
  /// References
  #[sdk(child(qname = "x:references"))]
  pub pivot_area_references: Option<crate::schemas::x::PivotAreaReferences>,
  /// Future Feature Data Storage Area
  #[sdk(child(qname = "x:extLst"))]
  pub extension_list: Option<crate::schemas::x::ExtensionList>,
}
/// Defines the PivotChange Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:pivotChange")]
pub struct PivotChange {
  /// allocationMethod
  #[sdk(attr(qname = ":allocationMethod"))]
  pub allocation_method: Option<AllocationMethodValues>,
  /// weightExpression
  #[sdk(attr(qname = ":weightExpression"))]
  pub weight_expression: Option<crate::simple_type::StringValue>,
  /// Defines the PivotEditValue Class.
  #[sdk(child(qname = "x14:editValue"))]
  pub pivot_edit_value: std::boxed::Box<PivotEditValue>,
  /// Defines the TupleItems Class.
  #[sdk(child(qname = "x14:tupleItems"))]
  pub tuple_items: std::boxed::Box<TupleItems>,
  /// Defines the ExtensionList Class.
  #[sdk(child(qname = "x14:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the PivotEditValue Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:editValue")]
pub struct PivotEditValue {
  /// valueType
  #[sdk(attr(qname = ":valueType"))]
  pub value_type: PivotEditValueTypeValues,
  #[sdk(text)]
  pub xml_content: Option<crate::simple_type::StringValue>,
}
/// Defines the Xstring Class.
pub type Xstring = crate::simple_type::StringValue;
/// Defines the SlicerStyleElements Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:slicerStyleElements")]
pub struct SlicerStyleElements {
  /// Defines the SlicerStyleElement Class.
  #[sdk(child(qname = "x14:slicerStyleElement"))]
  pub slicer_style_element: Vec<SlicerStyleElement>,
}
/// Defines the DdeValues Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:values")]
pub struct DdeValues {
  /// Rows
  #[sdk(attr(qname = ":rows"))]
  pub rows: Option<crate::simple_type::UInt32Value>,
  /// Columns
  #[sdk(attr(qname = ":cols"))]
  pub columns: Option<crate::simple_type::UInt32Value>,
  /// Value.
  #[sdk(child(qname = "x:value"))]
  pub value: Vec<crate::schemas::x::Value>,
}
/// Defines the ConditionalFormat Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:conditionalFormat")]
pub struct ConditionalFormat {
  /// scope
  #[sdk(attr(qname = ":scope"))]
  pub scope: Option<crate::schemas::x::ScopeValues>,
  /// type
  #[sdk(attr(qname = ":type"))]
  pub r#type: Option<crate::schemas::x::RuleValues>,
  /// priority
  #[sdk(attr(qname = ":priority"))]
  pub priority: Option<crate::simple_type::UInt32Value>,
  /// id
  #[sdk(attr(qname = ":id"))]
  #[sdk(pattern(regex = "\\{[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}\\}"))]
  #[sdk(string_format(kind = "token"))]
  pub id: crate::simple_type::StringValue,
  /// Defines the PivotAreas Class.
  #[sdk(child(qname = "x14:pivotAreas"))]
  pub pivot_areas: Option<PivotAreas>,
  /// Defines the ExtensionList Class.
  #[sdk(child(qname = "x14:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the PivotAreas Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:pivotAreas")]
pub struct PivotAreas {
  /// Pivot Area Count
  #[sdk(attr(qname = ":count"))]
  pub count: Option<crate::simple_type::UInt32Value>,
  /// Calculated Item Location.
  #[sdk(child(qname = "x:pivotArea"))]
  pub pivot_area: Vec<crate::schemas::x::PivotArea>,
}
/// Defines the SlicerStyle Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:slicerStyle")]
pub struct SlicerStyle {
  /// name
  #[sdk(attr(qname = ":name"))]
  pub name: crate::simple_type::StringValue,
  /// Defines the SlicerStyleElements Class.
  #[sdk(child(qname = "x14:slicerStyleElements"))]
  pub slicer_style_elements: Option<SlicerStyleElements>,
}
/// Defines the SlicerStyleElement Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:slicerStyleElement")]
pub struct SlicerStyleElement {
  /// type
  #[sdk(attr(qname = ":type"))]
  pub r#type: SlicerStyleTypeValues,
  /// dxfId
  #[sdk(attr(qname = ":dxfId"))]
  pub format_id: Option<crate::simple_type::UInt32Value>,
}
/// Defines the IgnoredError Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:ignoredError")]
pub struct IgnoredError {
  /// evalError
  #[sdk(attr(qname = ":evalError"))]
  pub eval_error: Option<crate::simple_type::BooleanValue>,
  /// twoDigitTextYear
  #[sdk(attr(qname = ":twoDigitTextYear"))]
  pub two_digit_text_year: Option<crate::simple_type::BooleanValue>,
  /// numberStoredAsText
  #[sdk(attr(qname = ":numberStoredAsText"))]
  pub number_stored_as_text: Option<crate::simple_type::BooleanValue>,
  /// formula
  #[sdk(attr(qname = ":formula"))]
  pub formula: Option<crate::simple_type::BooleanValue>,
  /// formulaRange
  #[sdk(attr(qname = ":formulaRange"))]
  pub formula_range: Option<crate::simple_type::BooleanValue>,
  /// unlockedFormula
  #[sdk(attr(qname = ":unlockedFormula"))]
  pub unlocked_formula: Option<crate::simple_type::BooleanValue>,
  /// emptyCellReference
  #[sdk(attr(qname = ":emptyCellReference"))]
  pub empty_cell_reference: Option<crate::simple_type::BooleanValue>,
  /// listDataValidation
  #[sdk(attr(qname = ":listDataValidation"))]
  pub list_data_validation: Option<crate::simple_type::BooleanValue>,
  /// calculatedColumn
  #[sdk(attr(qname = ":calculatedColumn"))]
  pub calculated_column: Option<crate::simple_type::BooleanValue>,
  /// Defines the ReferenceSequence Class.
  #[sdk(text_child(list, simple_type = "StringValue", qname = "xne:sqref"))]
  pub reference_sequence: Vec<crate::simple_type::StringValue>,
}
/// Defines the ProtectedRange Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:protectedRange")]
pub struct ProtectedRange {
  /// password
  #[sdk(attr(qname = ":password"))]
  #[sdk(string_length(min = 2u32, max = 2u32))]
  pub password: Option<crate::simple_type::HexBinaryValue>,
  /// algorithmName
  #[sdk(attr(qname = ":algorithmName"))]
  pub algorithm_name: Option<crate::simple_type::StringValue>,
  /// hashValue
  #[sdk(attr(qname = ":hashValue"))]
  pub hash_value: Option<crate::simple_type::Base64BinaryValue>,
  /// saltValue
  #[sdk(attr(qname = ":saltValue"))]
  pub salt_value: Option<crate::simple_type::Base64BinaryValue>,
  /// spinCount
  #[sdk(attr(qname = ":spinCount"))]
  pub spin_count: Option<crate::simple_type::UInt32Value>,
  /// name
  #[sdk(attr(qname = ":name"))]
  pub name: crate::simple_type::StringValue,
  /// securityDescriptor
  #[sdk(attr(qname = ":securityDescriptor"))]
  pub security_descriptor: Option<crate::simple_type::StringValue>,
  /// Defines the ReferenceSequence Class.
  #[sdk(text_child(list, simple_type = "StringValue", qname = "xne:sqref"))]
  pub reference_sequence: Vec<crate::simple_type::StringValue>,
}
/// Defines the CustomFilter Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:customFilter")]
pub struct CustomFilter {
  /// operator
  #[sdk(attr(qname = ":operator"))]
  pub operator: Option<crate::schemas::x::FilterOperatorValues>,
  /// val
  #[sdk(attr(qname = ":val"))]
  pub val: Option<crate::simple_type::StringValue>,
}
/// Defines the ListItem Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:item")]
pub struct ListItem {
  /// val
  #[sdk(attr(qname = ":val"))]
  pub val: crate::simple_type::StringValue,
}
/// Defines the ListItems Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:itemLst")]
pub struct ListItems {
  /// Defines the ListItem Class.
  #[sdk(child(qname = "x14:item"))]
  pub list_item: Vec<ListItem>,
  /// Defines the ExtensionList Class.
  #[sdk(child(qname = "x14:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the Slicer Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:slicer")]
pub struct Slicer {
  /// name
  #[sdk(attr(qname = ":name"))]
  pub name: crate::simple_type::StringValue,
  /// cache
  #[sdk(attr(qname = ":cache"))]
  pub cache: crate::simple_type::StringValue,
  /// caption
  #[sdk(attr(qname = ":caption"))]
  pub caption: Option<crate::simple_type::StringValue>,
  /// startItem
  #[sdk(attr(qname = ":startItem"))]
  pub start_item: Option<crate::simple_type::UInt32Value>,
  /// columnCount
  #[sdk(attr(qname = ":columnCount"))]
  pub column_count: Option<crate::simple_type::UInt32Value>,
  /// showCaption
  #[sdk(attr(qname = ":showCaption"))]
  pub show_caption: Option<crate::simple_type::BooleanValue>,
  /// level
  #[sdk(attr(qname = ":level"))]
  pub level: Option<crate::simple_type::UInt32Value>,
  /// style
  #[sdk(attr(qname = ":style"))]
  pub style: Option<crate::simple_type::StringValue>,
  /// lockedPosition
  #[sdk(attr(qname = ":lockedPosition"))]
  pub locked_position: Option<crate::simple_type::BooleanValue>,
  /// rowHeight
  #[sdk(attr(qname = ":rowHeight"))]
  pub row_height: crate::simple_type::UInt32Value,
  /// Defines the ExtensionList Class.
  #[sdk(child(qname = "x14:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the OlapSlicerCache Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:olap")]
pub struct OlapSlicerCache {
  /// pivotCacheId
  #[sdk(attr(qname = ":pivotCacheId"))]
  pub pivot_cache_id: crate::simple_type::UInt32Value,
  /// Defines the OlapSlicerCacheLevelsData Class.
  #[sdk(child(qname = "x14:levels"))]
  pub olap_slicer_cache_levels_data: std::boxed::Box<OlapSlicerCacheLevelsData>,
  /// Defines the OlapSlicerCacheSelections Class.
  #[sdk(child(qname = "x14:selections"))]
  pub olap_slicer_cache_selections: std::boxed::Box<OlapSlicerCacheSelections>,
  /// Defines the ExtensionList Class.
  #[sdk(child(qname = "x14:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the TabularSlicerCache Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:tabular")]
pub struct TabularSlicerCache {
  /// pivotCacheId
  #[sdk(attr(qname = ":pivotCacheId"))]
  pub pivot_cache_id: crate::simple_type::UInt32Value,
  /// sortOrder
  #[sdk(attr(qname = ":sortOrder"))]
  pub sort_order: Option<TabularSlicerCacheSortOrderValues>,
  /// customListSort
  #[sdk(attr(qname = ":customListSort"))]
  pub custom_list_sort: Option<crate::simple_type::BooleanValue>,
  /// showMissing
  #[sdk(attr(qname = ":showMissing"))]
  pub show_missing: Option<crate::simple_type::BooleanValue>,
  /// crossFilter
  #[sdk(attr(qname = ":crossFilter"))]
  pub cross_filter: Option<SlicerCacheCrossFilterValues>,
  /// Defines the TabularSlicerCacheItems Class.
  #[sdk(child(qname = "x14:items"))]
  pub tabular_slicer_cache_items: std::boxed::Box<TabularSlicerCacheItems>,
  /// Defines the ExtensionList Class.
  #[sdk(child(qname = "x14:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the SlicerCachePivotTable Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:pivotTable")]
pub struct SlicerCachePivotTable {
  /// tabId
  #[sdk(attr(qname = ":tabId"))]
  pub tab_id: crate::simple_type::UInt32Value,
  /// name
  #[sdk(attr(qname = ":name"))]
  pub name: crate::simple_type::StringValue,
}
/// Defines the OlapSlicerCacheItemParent Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:p")]
pub struct OlapSlicerCacheItemParent {
  /// n
  #[sdk(attr(qname = ":n"))]
  pub name: crate::simple_type::StringValue,
}
/// Defines the OlapSlicerCacheItem Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:i")]
pub struct OlapSlicerCacheItem {
  /// n
  #[sdk(attr(qname = ":n"))]
  pub name: crate::simple_type::StringValue,
  /// c
  #[sdk(attr(qname = ":c"))]
  pub display_name: Option<crate::simple_type::StringValue>,
  /// nd
  #[sdk(attr(qname = ":nd"))]
  pub non_display: Option<crate::simple_type::BooleanValue>,
  /// Defines the OlapSlicerCacheItemParent Class.
  #[sdk(child(qname = "x14:p"))]
  pub olap_slicer_cache_item_parent: Vec<OlapSlicerCacheItemParent>,
}
/// Defines the OlapSlicerCacheRange Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:range")]
pub struct OlapSlicerCacheRange {
  /// startItem
  #[sdk(attr(qname = ":startItem"))]
  pub start_item: crate::simple_type::UInt32Value,
  /// Defines the OlapSlicerCacheItem Class.
  #[sdk(child(qname = "x14:i"))]
  pub olap_slicer_cache_item: Vec<OlapSlicerCacheItem>,
}
/// Defines the OlapSlicerCacheRanges Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:ranges")]
pub struct OlapSlicerCacheRanges {
  /// Defines the OlapSlicerCacheRange Class.
  #[sdk(child(qname = "x14:range"))]
  pub olap_slicer_cache_range: Vec<OlapSlicerCacheRange>,
}
/// Defines the OlapSlicerCacheLevelData Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:level")]
pub struct OlapSlicerCacheLevelData {
  /// uniqueName
  #[sdk(attr(qname = ":uniqueName"))]
  pub unique_name: crate::simple_type::StringValue,
  /// sourceCaption
  #[sdk(attr(qname = ":sourceCaption"))]
  pub source_caption: Option<crate::simple_type::StringValue>,
  /// count
  #[sdk(attr(qname = ":count"))]
  pub count: crate::simple_type::UInt32Value,
  /// sortOrder
  #[sdk(attr(qname = ":sortOrder"))]
  pub sort_order: Option<OlapSlicerCacheSortOrderValues>,
  /// crossFilter
  #[sdk(attr(qname = ":crossFilter"))]
  pub cross_filter: Option<SlicerCacheCrossFilterValues>,
  /// Defines the OlapSlicerCacheRanges Class.
  #[sdk(child(qname = "x14:ranges"))]
  pub olap_slicer_cache_ranges: Option<OlapSlicerCacheRanges>,
}
/// Defines the OlapSlicerCacheLevelsData Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:levels")]
pub struct OlapSlicerCacheLevelsData {
  /// count
  #[sdk(attr(qname = ":count"))]
  pub count: Option<crate::simple_type::UInt32Value>,
  /// Defines the OlapSlicerCacheLevelData Class.
  #[sdk(child(qname = "x14:level"))]
  pub olap_slicer_cache_level_data: Vec<OlapSlicerCacheLevelData>,
}
/// Defines the OlapSlicerCacheSelections Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:selections")]
pub struct OlapSlicerCacheSelections {
  /// count
  #[sdk(attr(qname = ":count"))]
  pub count: Option<crate::simple_type::UInt32Value>,
  /// Defines the OlapSlicerCacheSelection Class.
  #[sdk(child(qname = "x14:selection"))]
  pub olap_slicer_cache_selection: Vec<OlapSlicerCacheSelection>,
}
/// Defines the OlapSlicerCacheSelection Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:selection")]
pub struct OlapSlicerCacheSelection {
  /// n
  #[sdk(attr(qname = ":n"))]
  pub name: crate::simple_type::StringValue,
  /// Defines the OlapSlicerCacheItemParent Class.
  #[sdk(child(qname = "x14:p"))]
  pub olap_slicer_cache_item_parent: Vec<OlapSlicerCacheItemParent>,
}
/// Defines the TabularSlicerCacheItems Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:items")]
pub struct TabularSlicerCacheItems {
  /// count
  #[sdk(attr(qname = ":count"))]
  pub count: Option<crate::simple_type::UInt32Value>,
  /// Defines the TabularSlicerCacheItem Class.
  #[sdk(child(qname = "x14:i"))]
  pub tabular_slicer_cache_item: Vec<TabularSlicerCacheItem>,
}
/// Defines the TabularSlicerCacheItem Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:i")]
pub struct TabularSlicerCacheItem {
  /// x
  #[sdk(attr(qname = ":x"))]
  pub atom: crate::simple_type::UInt32Value,
  /// s
  #[sdk(attr(qname = ":s"))]
  pub is_selected: Option<crate::simple_type::BooleanValue>,
  /// nd
  #[sdk(attr(qname = ":nd"))]
  pub non_display: Option<crate::simple_type::BooleanValue>,
}
/// Defines the SlicerCachePivotTables Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:pivotTables")]
pub struct SlicerCachePivotTables {
  /// Defines the SlicerCachePivotTable Class.
  #[sdk(child(qname = "x14:pivotTable"))]
  pub slicer_cache_pivot_table: Vec<SlicerCachePivotTable>,
}
/// Defines the SlicerCacheData Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:data")]
pub struct SlicerCacheData {
  #[sdk(
        choice(
            child(variant = OlapSlicerCache, qname = "x14:olap"),
            child(variant = TabularSlicerCache, qname = "x14:tabular")
        )
    )]
  pub slicer_cache_data_choice: Option<SlicerCacheDataChoice>,
}
/// Defines the SlicerCacheDefinitionExtensionList Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "x14:extLst")]
pub struct SlicerCacheDefinitionExtensionList {
  /// Defines the SlicerCacheDefinitionExtension Class.
  #[sdk(child(qname = "x:ext"))]
  pub slicer_cache_definition_extension: Vec<crate::schemas::x::SlicerCacheDefinitionExtension>,
}
#[derive(Clone, Debug, PartialEq)]
pub enum PivotUserEditChoice {
  /// Defines the Formula Class.
  Formula(crate::schemas::xne::Formula),
  /// Defines the PivotEditValue Class.
  PivotEditValue(std::boxed::Box<PivotEditValue>),
}
#[derive(Clone, Debug, PartialEq)]
pub enum SlicerCacheDataChoice {
  /// Defines the OlapSlicerCache Class.
  OlapSlicerCache(std::boxed::Box<OlapSlicerCache>),
  /// Defines the TabularSlicerCache Class.
  TabularSlicerCache(std::boxed::Box<TabularSlicerCache>),
}