ooxmlsdk 0.6.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
//
// -----------------------------------------------------------------------------
//  THIS FILE WAS @generated AUTOMATICALLY. DO NOT MODIFY THIS FILE MANUALLY.
// -----------------------------------------------------------------------------
//

#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum TimelineStyleType {
  #[sdk(rename = "selectionLabel")]
  #[default]
  SelectionLabel,
  #[sdk(rename = "timeLevel")]
  TimeLevel,
  #[sdk(rename = "periodLabel1")]
  PeriodLabel1,
  #[sdk(rename = "periodLabel2")]
  PeriodLabel2,
  #[sdk(rename = "selectedTimeBlock")]
  SelectedTimeBlock,
  #[sdk(rename = "unselectedTimeBlock")]
  UnselectedTimeBlock,
  #[sdk(rename = "selectedTimeBlockSpace")]
  SelectedTimeBlockSpace,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum CalculatedMemberNumberFormat {
  #[sdk(rename = "default")]
  #[default]
  Default,
  #[sdk(rename = "number")]
  Number,
  #[sdk(rename = "percent")]
  Percent,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum SxvCellType {
  #[sdk(rename = "b")]
  #[default]
  Boolean,
  #[sdk(rename = "n")]
  Number,
  #[sdk(rename = "e")]
  Error,
  #[sdk(rename = "str")]
  String,
  #[sdk(rename = "d")]
  Date,
  #[sdk(rename = "bl")]
  Blank,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum MovingPeriodStep {
  #[sdk(rename = "year")]
  #[default]
  Year,
  #[sdk(rename = "quarter")]
  Quarter,
  #[sdk(rename = "month")]
  Month,
  #[sdk(rename = "week")]
  Week,
  #[sdk(rename = "day")]
  Day,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum QuestionType {
  #[sdk(rename = "checkBox")]
  #[default]
  CheckBox,
  #[sdk(rename = "choice")]
  Choice,
  #[sdk(rename = "date")]
  Date,
  #[sdk(rename = "time")]
  Time,
  #[sdk(rename = "multipleLinesOfText")]
  MultipleLinesOfText,
  #[sdk(rename = "number")]
  Number,
  #[sdk(rename = "singleLineOfText")]
  SingleLineOfText,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum QuestionFormat {
  #[sdk(rename = "generalDate")]
  #[default]
  GeneralDate,
  #[sdk(rename = "longDate")]
  LongDate,
  #[sdk(rename = "shortDate")]
  ShortDate,
  #[sdk(rename = "longTime")]
  LongTime,
  #[sdk(rename = "shortTime")]
  ShortTime,
  #[sdk(rename = "generalNumber")]
  GeneralNumber,
  #[sdk(rename = "standard")]
  Standard,
  #[sdk(rename = "fixed")]
  Fixed,
  #[sdk(rename = "percent")]
  Percent,
  #[sdk(rename = "currency")]
  Currency,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum SurveyPosition {
  #[sdk(rename = "absolute")]
  #[default]
  Absolute,
  #[sdk(rename = "fixed")]
  Fixed,
  #[sdk(rename = "relative")]
  Relative,
  #[sdk(rename = "static")]
  Static,
  #[sdk(rename = "inherit")]
  Inherit,
}
/// Defines the PivotCaches Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x:CT_PivotCaches/x15:pivotCaches")]
pub struct PivotCaches {
  /// PivotCache.
  #[sdk(child(qname = "x:CT_PivotCache/x:pivotCache"))]
  pub x_pivot_cache: Vec<crate::schemas::x::PivotCache>,
}
/// Defines the TimelineCachePivotCaches Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x:CT_PivotCaches/x15:timelineCachePivotCaches")]
pub struct TimelineCachePivotCaches {
  /// PivotCache.
  #[sdk(child(qname = "x:CT_PivotCache/x:pivotCache"))]
  pub x_pivot_cache: Vec<crate::schemas::x::PivotCache>,
}
/// Defines the PivotTableReferences Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(
  office2013,
  qname = "x15:CT_PivotTableReferences/x15:pivotTableReferences"
)]
pub struct PivotTableReferences {
  /// Defines the PivotTableReference Class.
  #[sdk(child(
    office2013,
    qname = "x15:CT_PivotTableReference/x15:pivotTableReference"
  ))]
  pub x15_pivot_table_reference: Vec<PivotTableReference>,
}
/// Defines the QueryTable Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_QueryTable/x15:queryTable")]
pub struct QueryTable {
  /// clipped
  #[sdk(attr(office2013, qname = ":clipped"))]
  pub clipped: Option<crate::simple_type::BooleanValue>,
  /// sourceDataName
  #[sdk(attr(office2013, qname = ":sourceDataName"))]
  pub source_data_name: Option<crate::simple_type::StringValue>,
  /// drillThrough
  #[sdk(attr(office2013, qname = ":drillThrough"))]
  pub drill_through: Option<crate::simple_type::BooleanValue>,
}
/// Defines the WebExtensions Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_WebExtensions/x15:webExtensions")]
pub struct WebExtensions {
  pub xmlns: Vec<crate::common::XmlNamespaceDecl>,
  /// Defines the WebExtension Class.
  #[sdk(child(office2013, qname = "x15:CT_WebExtension/x15:webExtension"))]
  pub x15_web_extension: Vec<WebExtension>,
}
/// Defines the TimelineCacheReferences Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_TimelineCacheRefs/x15:timelineCacheRefs")]
pub struct TimelineCacheReferences {
  /// Defines the TimelineCacheReference Class.
  #[sdk(child(office2013, qname = "x15:CT_TimelineCacheRef/x15:timelineCacheRef"))]
  pub x15_timeline_cache_ref: Vec<TimelineCacheReference>,
}
/// Defines the TimelineReferences Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_TimelineRefs/x15:timelineRefs")]
pub struct TimelineReferences {
  /// Defines the TimelineReference Class.
  #[sdk(child(office2013, qname = "x15:CT_TimelineRef/x15:timelineRef"))]
  pub x15_timeline_ref: Vec<TimelineReference>,
}
/// Defines the WorkbookProperties Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_WorkbookPr/x15:workbookPr")]
pub struct WorkbookProperties {
  /// chartTrackingRefBase
  #[sdk(attr(office2013, qname = ":chartTrackingRefBase"))]
  pub chart_tracking_reference_base: Option<crate::simple_type::BooleanValue>,
}
/// Defines the TimelineStyles Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_TimelineStyles/x15:timelineStyles")]
pub struct TimelineStyles {
  /// defaultTimelineStyle
  #[sdk(attr(office2013, qname = ":defaultTimelineStyle"))]
  pub default_timeline_style: crate::simple_type::StringValue,
  /// Defines the TimelineStyle Class.
  #[sdk(child(office2013, qname = "x15:CT_TimelineStyle/x15:timelineStyle"))]
  pub x15_timeline_style: Vec<TimelineStyle>,
}
/// Defines the DifferentialFormats Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x:CT_Dxfs/x15:dxfs")]
pub struct DifferentialFormats {
  /// Format Count
  #[sdk(attr(qname = ":count"))]
  pub count: Option<crate::simple_type::UInt32Value>,
  /// Formatting.
  #[sdk(child(qname = "x:CT_Dxf/x:dxf"))]
  pub x_dxf: Vec<crate::schemas::x::DifferentialFormat>,
}
/// Defines the Connection Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_Connection/x15:connection")]
pub struct Connection {
  /// id
  #[sdk(attr(office2013, qname = ":id"))]
  pub id: crate::simple_type::StringValue,
  /// model
  #[sdk(attr(office2013, qname = ":model"))]
  pub model: Option<crate::simple_type::BooleanValue>,
  /// excludeFromRefreshAll
  #[sdk(attr(office2013, qname = ":excludeFromRefreshAll"))]
  pub exclude_from_refresh_all: Option<crate::simple_type::BooleanValue>,
  /// autoDelete
  #[sdk(attr(office2013, qname = ":autoDelete"))]
  pub auto_delete: Option<crate::simple_type::BooleanValue>,
  /// usedByAddin
  #[sdk(attr(office2013, qname = ":usedByAddin"))]
  pub used_by_addin: Option<crate::simple_type::BooleanValue>,
  /// Defines the TextProperties Class.
  #[sdk(child(office2013, qname = "x:CT_TextPr/x15:textPr"))]
  pub text_properties: Option<std::boxed::Box<TextProperties>>,
  /// Defines the ModelTextProperties Class.
  #[sdk(child(office2013, qname = "x15:CT_ModelTextPr/x15:modelTextPr"))]
  pub model_text_properties: Option<ModelTextProperties>,
  /// Defines the RangeProperties Class.
  #[sdk(child(office2013, qname = "x15:CT_RangePr/x15:rangePr"))]
  pub range_properties: Option<RangeProperties>,
  /// Defines the OleDbPrpoperties Class.
  #[sdk(child(office2013, qname = "x15:CT_OledbPr/x15:oledbPr"))]
  pub ole_db_prpoperties: Option<std::boxed::Box<OleDbPrpoperties>>,
  /// Defines the DataFeedProperties Class.
  #[sdk(child(office2013, qname = "x15:CT_DataFeedPr/x15:dataFeedPr"))]
  pub data_feed_properties: Option<std::boxed::Box<DataFeedProperties>>,
}
/// Defines the CalculatedMember Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_CalculatedMember/x15:calculatedMember")]
pub struct CalculatedMember {
  /// measureGroup
  #[sdk(attr(office2013, qname = ":measureGroup"))]
  pub measure_group: Option<crate::simple_type::StringValue>,
  /// numberFormat
  #[sdk(attr(office2013, qname = ":numberFormat"))]
  pub number_format: Option<CalculatedMemberNumberFormat>,
  /// measure
  #[sdk(attr(office2013, qname = ":measure"))]
  pub measure: Option<crate::simple_type::BooleanValue>,
}
/// Defines the PivotTableUISettings Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(
  office2013,
  qname = "x15:CT_PivotTableUISettings/x15:pivotTableUISettings"
)]
pub struct PivotTableUiSettings {
  /// sourceDataName
  #[sdk(attr(office2013, qname = ":sourceDataName"))]
  pub source_data_name: Option<crate::simple_type::StringValue>,
  /// relNeededHidden
  #[sdk(attr(office2013, qname = ":relNeededHidden"))]
  pub rel_needed_hidden: Option<crate::simple_type::BooleanValue>,
  /// Defines the FieldListActiveTabTopLevelEntity Class.
  #[sdk(child(
    office2013,
    qname = "x15:CT_FieldListActiveTabTopLevelEntity/x15:activeTabTopLevelEntity"
  ))]
  pub x15_active_tab_top_level_entity: Vec<FieldListActiveTabTopLevelEntity>,
  /// Defines the ExtensionList Class.
  #[sdk(child(office2013, qname = "x:CT_ExtensionList/x15:extLst"))]
  pub x15_ext_lst: Option<ExtensionList>,
}
/// Defines the PivotFilter Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_PivotFilter/x15:pivotFilter")]
pub struct PivotFilter {
  /// useWholeDay
  #[sdk(attr(office2013, qname = ":useWholeDay"))]
  pub use_whole_day: crate::simple_type::BooleanValue,
}
/// Defines the CachedUniqueNames Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_CachedUniqueNames/x15:cachedUniqueNames")]
pub struct CachedUniqueNames {
  /// Defines the CachedUniqueName Class.
  #[sdk(child(office2013, qname = "x15:CT_CachedUniqueName/x15:cachedUniqueName"))]
  pub x15_cached_unique_name: Vec<CachedUniqueName>,
}
/// Defines the CacheHierarchy Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_CacheHierarchy/x15:cacheHierarchy")]
pub struct CacheHierarchy {
  /// aggregatedColumn
  #[sdk(attr(office2013, qname = ":aggregatedColumn"))]
  pub aggregated_column: crate::simple_type::Int32Value,
}
/// Defines the TimelinePivotCacheDefinition Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(
  office2013,
  qname = "x15:CT_TimelinePivotCacheDefinition/x15:timelinePivotCacheDefinition"
)]
pub struct TimelinePivotCacheDefinition {
  /// timelineData
  #[sdk(attr(office2013, qname = ":timelineData"))]
  pub timeline_data: Option<crate::simple_type::BooleanValue>,
}
/// Defines the PivotCacheIdVersion Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(
  office2013,
  qname = "x15:CT_PivotCacheIdVersion/x15:pivotCacheIdVersion"
)]
pub struct PivotCacheIdVersion {
  /// cacheIdSupportedVersion
  #[sdk(attr(office2013, qname = ":cacheIdSupportedVersion"))]
  pub cache_id_supported_version: crate::simple_type::ByteValue,
  /// cacheIdCreatedVersion
  #[sdk(attr(office2013, qname = ":cacheIdCreatedVersion"))]
  pub cache_id_created_version: crate::simple_type::ByteValue,
}
/// Defines the DataModel Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_DataModel/x15:dataModel")]
pub struct DataModel {
  /// minVersionLoad
  #[sdk(attr(office2013, qname = ":minVersionLoad"))]
  pub min_version_load: Option<crate::simple_type::ByteValue>,
  /// Defines the ModelTables Class.
  #[sdk(child(office2013, qname = "x15:CT_ModelTables/x15:modelTables"))]
  pub model_tables: Option<ModelTables>,
  /// Defines the ModelRelationships Class.
  #[sdk(child(office2013, qname = "x15:CT_ModelRelationships/x15:modelRelationships"))]
  pub model_relationships: Option<ModelRelationships>,
  /// Defines the ExtensionList Class.
  #[sdk(child(office2013, qname = "x:CT_ExtensionList/x15:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the PivotTableData Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_PivotTableData/x15:pivotTableData")]
pub struct PivotTableData {
  /// rowCount
  #[sdk(attr(office2013, qname = ":rowCount"))]
  pub row_count: Option<crate::simple_type::UInt32Value>,
  /// columnCount
  #[sdk(attr(office2013, qname = ":columnCount"))]
  pub column_count: Option<crate::simple_type::UInt32Value>,
  /// cacheId
  #[sdk(attr(office2013, qname = ":cacheId"))]
  pub cache_id: crate::simple_type::UInt32Value,
  /// Defines the PivotRow Class.
  #[sdk(child(office2013, qname = "x15:CT_PivotRow/x15:pivotRow"))]
  pub x15_pivot_row: Vec<PivotRow>,
}
/// Defines the PivotCacheDecoupled Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(
  office2013,
  qname = "x15:CT_PivotCacheDecoupled/x15:pivotCacheDecoupled"
)]
pub struct PivotCacheDecoupled {
  /// decoupled
  #[sdk(attr(office2013, qname = ":decoupled"))]
  pub decoupled: Option<crate::simple_type::BooleanValue>,
}
/// Defines the DataField Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_DataField/x15:dataField")]
pub struct DataField {
  /// isCountDistinct
  #[sdk(attr(office2013, qname = ":isCountDistinct"))]
  pub is_count_distinct: Option<crate::simple_type::BooleanValue>,
}
/// Defines the MovingPeriodState Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_MovingPeriodState/x15:movingPeriodState")]
pub struct MovingPeriodState {
  /// referenceDateBegin
  #[sdk(attr(office2013, qname = ":referenceDateBegin"))]
  pub reference_date_begin: crate::simple_type::DateTimeValue,
  /// referencePeriod
  #[sdk(attr(office2013, qname = ":referencePeriod"))]
  pub reference_period: MovingPeriodStep,
  /// referenceMultiple
  #[sdk(attr(office2013, qname = ":referenceMultiple"))]
  pub reference_multiple: crate::simple_type::UInt32Value,
  /// movingPeriod
  #[sdk(attr(office2013, qname = ":movingPeriod"))]
  pub moving_period: MovingPeriodStep,
  /// movingMultiple
  #[sdk(attr(office2013, qname = ":movingMultiple"))]
  pub moving_multiple: crate::simple_type::UInt32Value,
}
/// Defines the SlicerCaches Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x14:CT_SlicerCaches/x15:slicerCaches")]
pub struct SlicerCaches {
  /// Defines the SlicerCache Class.
  #[sdk(child(office2010, qname = "x14:CT_SlicerCache/x14:slicerCache"))]
  pub x14_slicer_cache: Vec<crate::schemas::x14::SlicerCache>,
}
/// Defines the TableSlicerCache Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_TableSlicerCache/x15:tableSlicerCache")]
pub struct TableSlicerCache {
  /// tableId
  #[sdk(attr(office2013, qname = ":tableId"))]
  pub table_id: crate::simple_type::UInt32Value,
  /// column
  #[sdk(attr(office2013, qname = ":column"))]
  pub column: crate::simple_type::UInt32Value,
  /// sortOrder
  #[sdk(attr(office2010, qname = ":sortOrder"))]
  pub sort_order: Option<crate::schemas::x14::TabularSlicerCacheSortOrderValues>,
  /// customListSort
  #[sdk(attr(office2013, qname = ":customListSort"))]
  pub custom_list_sort: Option<crate::simple_type::BooleanValue>,
  /// crossFilter
  #[sdk(attr(office2010, qname = ":crossFilter"))]
  pub cross_filter: Option<crate::schemas::x14::SlicerCacheCrossFilterValues>,
  /// Defines the ExtensionList Class.
  #[sdk(child(office2013, qname = "x:CT_ExtensionList/x15:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the SlicerCacheHideItemsWithNoData Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(
  office2013,
  qname = "x15:CT_SlicerCacheHideNoData/x15:slicerCacheHideItemsWithNoData"
)]
pub struct SlicerCacheHideItemsWithNoData {
  /// count
  #[sdk(attr(office2013, qname = ":count"))]
  pub count: Option<crate::simple_type::UInt32Value>,
  /// Defines the SlicerCacheOlapLevelName Class.
  #[sdk(child(
    office2013,
    qname = "x15:CT_SlicerCacheOlapLevelName/x15:slicerCacheOlapLevelName"
  ))]
  pub x15_slicer_cache_olap_level_name: Vec<SlicerCacheOlapLevelName>,
}
/// Defines the SlicerCachePivotTables Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(
  office2013,
  qname = "x14:CT_SlicerCachePivotTables/x15:slicerCachePivotTables"
)]
pub struct SlicerCachePivotTables {
  /// Defines the SlicerCachePivotTable Class.
  #[sdk(child(office2010, qname = "x14:CT_SlicerCachePivotTable/x14:pivotTable"))]
  pub x14_pivot_table: Vec<crate::schemas::x14::SlicerCachePivotTable>,
}
/// Defines the Survey Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_Survey/x15:survey")]
pub struct Survey {
  /// id
  #[sdk(attr(office2013, qname = ":id"))]
  pub id: crate::simple_type::UInt32Value,
  /// guid
  #[sdk(attr(office2013, qname = ":guid"))]
  #[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 guid: crate::simple_type::StringValue,
  /// title
  #[sdk(attr(office2013, qname = ":title"))]
  pub title: Option<crate::simple_type::StringValue>,
  /// description
  #[sdk(attr(office2013, qname = ":description"))]
  pub description: Option<crate::simple_type::StringValue>,
  /// Defines the SurveyPrSurveyElementPr Class.
  #[sdk(child(office2013, qname = "x15:CT_SurveyElementPr/x15:surveyPr"))]
  pub survey_pr_survey_element_pr: Option<std::boxed::Box<SurveyPrSurveyElementPr>>,
  /// Defines the TitlePrSurveyElementPr Class.
  #[sdk(child(office2013, qname = "x15:CT_SurveyElementPr/x15:titlePr"))]
  pub title_pr_survey_element_pr: Option<std::boxed::Box<TitlePrSurveyElementPr>>,
  /// Defines the DescriptionPrSurveyElementPr Class.
  #[sdk(child(office2013, qname = "x15:CT_SurveyElementPr/x15:descriptionPr"))]
  pub description_pr_survey_element_pr: Option<std::boxed::Box<DescriptionPrSurveyElementPr>>,
  /// Defines the SurveyQuestions Class.
  #[sdk(child(office2013, qname = "x15:CT_SurveyQuestions/x15:questions"))]
  pub survey_questions: std::boxed::Box<SurveyQuestions>,
  /// Defines the ExtensionList Class.
  #[sdk(child(office2013, qname = "x:CT_ExtensionList/x15:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the Timelines Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_Timelines/x15:timelines")]
pub struct Timelines {
  pub xmlns: Vec<crate::common::XmlNamespaceDecl>,
  pub xml_header: crate::common::XmlHeaderType,
  pub xml_other_attrs: Vec<(String, String)>,
  /// Defines the Timeline Class.
  #[sdk(child(office2013, qname = "x15:CT_Timeline/x15:timeline"))]
  pub x15_timeline: Vec<Timeline>,
}
/// Defines the TimelineCacheDefinition Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(
  office2013,
  qname = "x15:CT_TimelineCacheDefinition/x15:timelineCacheDefinition"
)]
pub struct TimelineCacheDefinition {
  pub xmlns: Vec<crate::common::XmlNamespaceDecl>,
  pub xml_header: crate::common::XmlHeaderType,
  pub xml_other_attrs: Vec<(String, String)>,
  /// name
  #[sdk(attr(office2013, qname = ":name"))]
  pub name: crate::simple_type::StringValue,
  /// sourceName
  #[sdk(attr(office2013, qname = ":sourceName"))]
  pub source_name: crate::simple_type::StringValue,
  /// Defines the TimelineCachePivotTables Class.
  #[sdk(child(office2013, qname = "x15:CT_TimelineCachePivotTables/x15:pivotTables"))]
  pub timeline_cache_pivot_tables: Option<TimelineCachePivotTables>,
  /// Defines the TimelineState Class.
  #[sdk(child(office2013, qname = "x15:CT_TimelineState/x15:state"))]
  pub timeline_state: std::boxed::Box<TimelineState>,
  /// Defines the ExtensionList Class.
  #[sdk(child(office2013, qname = "x:CT_ExtensionList/x15:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the PivotTableReference Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(
  office2013,
  qname = "x15:CT_PivotTableReference/x15:pivotTableReference"
)]
pub struct PivotTableReference {
  /// id
  #[sdk(attr(office2013, qname = "r:id"))]
  pub r_id: crate::simple_type::StringValue,
}
/// Defines the WebExtension Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_WebExtension/x15:webExtension")]
pub struct WebExtension {
  pub xmlns: Vec<crate::common::XmlNamespaceDecl>,
  /// appRef
  #[sdk(attr(office2013, qname = ":appRef"))]
  pub application_reference: crate::simple_type::StringValue,
  /// Defines the Formula Class.
  #[sdk(text_child(office2010, qname = "x:ST_Formula/xne:f"))]
  pub formula: crate::simple_type::StringValue,
}
/// Defines the TimelineCacheReference Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_TimelineCacheRef/x15:timelineCacheRef")]
pub struct TimelineCacheReference {
  /// id
  #[sdk(attr(office2013, qname = "r:id"))]
  pub r_id: crate::simple_type::StringValue,
}
/// Defines the TimelineReference Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_TimelineRef/x15:timelineRef")]
pub struct TimelineReference {
  /// id
  #[sdk(attr(office2013, qname = "r:id"))]
  pub r_id: crate::simple_type::StringValue,
}
/// Defines the TimelineStyle Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_TimelineStyle/x15:timelineStyle")]
pub struct TimelineStyle {
  /// name
  #[sdk(attr(office2013, qname = ":name"))]
  pub name: crate::simple_type::StringValue,
  /// Defines the TimelineStyleElements Class.
  #[sdk(child(
    office2013,
    qname = "x15:CT_TimelineStyleElements/x15:timelineStyleElements"
  ))]
  pub timeline_style_elements: Option<TimelineStyleElements>,
}
/// Defines the TimelineStyleElement Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(
  office2013,
  qname = "x15:CT_TimelineStyleElement/x15:timelineStyleElement"
)]
pub struct TimelineStyleElement {
  /// type
  #[sdk(attr(office2013, qname = ":type"))]
  pub r#type: TimelineStyleType,
  /// dxfId
  #[sdk(attr(office2013, qname = ":dxfId"))]
  pub format_id: Option<crate::simple_type::UInt32Value>,
}
/// Defines the TimelineStyleElements Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(
  office2013,
  qname = "x15:CT_TimelineStyleElements/x15:timelineStyleElements"
)]
pub struct TimelineStyleElements {
  /// Defines the TimelineStyleElement Class.
  #[sdk(child(
    office2013,
    qname = "x15:CT_TimelineStyleElement/x15:timelineStyleElement"
  ))]
  pub x15_timeline_style_element: Vec<TimelineStyleElement>,
}
/// Defines the DbTable Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_DbTable/x15:dbTable")]
pub struct DbTable {
  /// name
  #[sdk(attr(office2013, qname = ":name"))]
  pub name: crate::simple_type::StringValue,
}
/// Defines the DbTables Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_DbTables/x15:dbTables")]
pub struct DbTables {
  /// Defines the DbTable Class.
  #[sdk(child(office2013, qname = "x15:CT_DbTable/x15:dbTable"))]
  pub x15_db_table: Vec<DbTable>,
}
/// Defines the DbCommand Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_DbCommand/x15:dbCommand")]
pub struct DbCommand {
  /// text
  #[sdk(attr(office2013, qname = ":text"))]
  pub text: crate::simple_type::StringValue,
}
/// Defines the TextProperties Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x:CT_TextPr/x15:textPr")]
pub struct TextProperties {
  /// prompt
  #[sdk(attr(qname = ":prompt"))]
  pub prompt: Option<crate::simple_type::BooleanValue>,
  /// fileType
  #[sdk(attr(qname = ":fileType"))]
  pub file_type: Option<crate::schemas::x::FileTypeValues>,
  /// codePage
  #[sdk(attr(qname = ":codePage"))]
  pub code_page: Option<crate::simple_type::UInt32Value>,
  /// characterSet
  #[sdk(attr(qname = ":characterSet"))]
  pub text_character_set: Option<crate::simple_type::StringValue>,
  /// firstRow
  #[sdk(attr(qname = ":firstRow"))]
  pub first_row: Option<crate::simple_type::UInt32Value>,
  /// sourceFile
  #[sdk(attr(qname = ":sourceFile"))]
  pub source_file: Option<crate::simple_type::StringValue>,
  /// delimited
  #[sdk(attr(qname = ":delimited"))]
  pub delimited: Option<crate::simple_type::BooleanValue>,
  /// decimal
  #[sdk(attr(qname = ":decimal"))]
  pub decimal: Option<crate::simple_type::StringValue>,
  /// thousands
  #[sdk(attr(qname = ":thousands"))]
  pub thousands: Option<crate::simple_type::StringValue>,
  /// tab
  #[sdk(attr(qname = ":tab"))]
  pub tab_as_delimiter: Option<crate::simple_type::BooleanValue>,
  /// space
  #[sdk(attr(qname = ":space"))]
  pub space: Option<crate::simple_type::BooleanValue>,
  /// comma
  #[sdk(attr(qname = ":comma"))]
  pub comma: Option<crate::simple_type::BooleanValue>,
  /// semicolon
  #[sdk(attr(qname = ":semicolon"))]
  pub semicolon: Option<crate::simple_type::BooleanValue>,
  /// consecutive
  #[sdk(attr(qname = ":consecutive"))]
  pub consecutive: Option<crate::simple_type::BooleanValue>,
  /// qualifier
  #[sdk(attr(qname = ":qualifier"))]
  pub qualifier: Option<crate::schemas::x::QualifierValues>,
  /// delimiter
  #[sdk(attr(qname = ":delimiter"))]
  pub delimiter: Option<crate::simple_type::StringValue>,
  /// Defines the TextFields Class.
  #[sdk(child(qname = "x:CT_TextFields/x:textFields"))]
  pub text_fields: Option<crate::schemas::x::TextFields>,
}
/// Defines the ModelTextProperties Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_ModelTextPr/x15:modelTextPr")]
pub struct ModelTextProperties {
  /// headers
  #[sdk(attr(office2013, qname = ":headers"))]
  pub headers: Option<crate::simple_type::BooleanValue>,
}
/// Defines the RangeProperties Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_RangePr/x15:rangePr")]
pub struct RangeProperties {
  /// sourceName
  #[sdk(attr(office2013, qname = ":sourceName"))]
  pub source_name: crate::simple_type::StringValue,
}
/// Defines the OleDbPrpoperties Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_OledbPr/x15:oledbPr")]
pub struct OleDbPrpoperties {
  /// connection
  #[sdk(attr(office2013, qname = ":connection"))]
  pub connection: Option<crate::simple_type::StringValue>,
  #[sdk(choice(
    qname = "x15:CT_DbTables/x15:dbTables",
    qname = "x15:CT_DbCommand/x15:dbCommand"
  ))]
  pub ole_db_prpoperties_choice: Option<OleDbPrpopertiesChoice>,
}
/// Defines the DataFeedProperties Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_DataFeedPr/x15:dataFeedPr")]
pub struct DataFeedProperties {
  /// connection
  #[sdk(attr(office2013, qname = ":connection"))]
  pub connection: crate::simple_type::StringValue,
  /// Defines the DbTables Class.
  #[sdk(child(office2013, qname = "x15:CT_DbTables/x15:dbTables"))]
  pub db_tables: std::boxed::Box<DbTables>,
}
/// Defines the FieldListActiveTabTopLevelEntity Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(
  office2013,
  qname = "x15:CT_FieldListActiveTabTopLevelEntity/x15:activeTabTopLevelEntity"
)]
pub struct FieldListActiveTabTopLevelEntity {
  /// name
  #[sdk(attr(office2013, qname = ":name"))]
  pub name: crate::simple_type::StringValue,
  /// type
  #[sdk(attr(office2013, qname = ":type"))]
  pub r#type: Option<crate::simple_type::UInt32Value>,
}
/// Defines the ExtensionList Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x:CT_ExtensionList/x15:extLst")]
pub struct ExtensionList {
  pub xmlns: Vec<crate::common::XmlNamespaceDecl>,
  /// Extension.
  #[sdk(child(qname = "x:CT_Extension/x:ext"))]
  pub x_ext: Vec<crate::schemas::x::Extension>,
}
/// Defines the CachedUniqueName Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_CachedUniqueName/x15:cachedUniqueName")]
pub struct CachedUniqueName {
  /// index
  #[sdk(attr(office2013, qname = ":index"))]
  pub index: crate::simple_type::UInt32Value,
  /// name
  #[sdk(attr(office2013, qname = ":name"))]
  pub name: crate::simple_type::StringValue,
}
/// Defines the ModelTable Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_ModelTable/x15:modelTable")]
pub struct ModelTable {
  /// id
  #[sdk(attr(office2013, qname = ":id"))]
  pub id: crate::simple_type::StringValue,
  /// name
  #[sdk(attr(office2013, qname = ":name"))]
  pub name: crate::simple_type::StringValue,
  /// connection
  #[sdk(attr(office2013, qname = ":connection"))]
  pub connection: crate::simple_type::StringValue,
}
/// Defines the ModelRelationship Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_ModelRelationship/x15:modelRelationship")]
pub struct ModelRelationship {
  /// fromTable
  #[sdk(attr(office2013, qname = ":fromTable"))]
  pub from_table: crate::simple_type::StringValue,
  /// fromColumn
  #[sdk(attr(office2013, qname = ":fromColumn"))]
  pub from_column: crate::simple_type::StringValue,
  /// toTable
  #[sdk(attr(office2013, qname = ":toTable"))]
  pub to_table: crate::simple_type::StringValue,
  /// toColumn
  #[sdk(attr(office2013, qname = ":toColumn"))]
  pub to_column: crate::simple_type::StringValue,
}
/// Defines the ModelTables Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_ModelTables/x15:modelTables")]
pub struct ModelTables {
  /// Defines the ModelTable Class.
  #[sdk(child(office2013, qname = "x15:CT_ModelTable/x15:modelTable"))]
  pub x15_model_table: Vec<ModelTable>,
}
/// Defines the ModelRelationships Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_ModelRelationships/x15:modelRelationships")]
pub struct ModelRelationships {
  /// Defines the ModelRelationship Class.
  #[sdk(child(office2013, qname = "x15:CT_ModelRelationship/x15:modelRelationship"))]
  pub x15_model_relationship: Vec<ModelRelationship>,
}
/// Defines the PivotValueCell Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_PivotValueCell/x15:c")]
pub struct PivotValueCell {
  /// i
  #[sdk(attr(office2013, qname = ":i"))]
  pub item: Option<crate::simple_type::UInt32Value>,
  /// t
  #[sdk(attr(office2013, qname = ":t"))]
  pub text: Option<SxvCellType>,
  /// Defines the Xstring Class.
  #[sdk(text_child(office2013, qname = "x:ST_Xstring/x15:v"))]
  pub xstring: crate::simple_type::StringValue,
  /// Defines the PivotValueCellExtra Class.
  #[sdk(child(office2013, qname = "x15:CT_PivotValueCellExtra/x15:x"))]
  pub pivot_value_cell_extra: Option<PivotValueCellExtra>,
}
/// Defines the Xstring Class.
pub type Xstring = crate::simple_type::StringValue;
/// Defines the PivotValueCellExtra Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_PivotValueCellExtra/x15:x")]
pub struct PivotValueCellExtra {
  /// in
  #[sdk(attr(office2013, qname = ":in"))]
  pub format_index: Option<crate::simple_type::UInt32Value>,
  /// bc
  #[sdk(attr(office2013, qname = ":bc"))]
  #[sdk(string_length(min = 4u32, max = 4u32))]
  pub background_color: Option<crate::simple_type::HexBinaryValue>,
  /// fc
  #[sdk(attr(office2013, qname = ":fc"))]
  #[sdk(string_length(min = 4u32, max = 4u32))]
  pub foreground_color: Option<crate::simple_type::HexBinaryValue>,
  /// i
  #[sdk(attr(office2013, qname = ":i"))]
  pub italic: Option<crate::simple_type::BooleanValue>,
  /// un
  #[sdk(attr(office2013, qname = ":un"))]
  pub underline: Option<crate::simple_type::BooleanValue>,
  /// st
  #[sdk(attr(office2013, qname = ":st"))]
  pub strikethrough: Option<crate::simple_type::BooleanValue>,
  /// b
  #[sdk(attr(office2013, qname = ":b"))]
  pub bold: Option<crate::simple_type::BooleanValue>,
}
/// Defines the PivotTableServerFormats Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(
  office2013,
  qname = "x15:CT_PivotTableServerFormats/x15:pivotTableServerFormats"
)]
pub struct PivotTableServerFormats {
  /// count
  #[sdk(attr(office2013, qname = ":count"))]
  pub count: crate::simple_type::UInt32Value,
  /// Defines the ServerFormat Class.
  #[sdk(child(office2013, qname = "x:CT_ServerFormat/x15:serverFormat"))]
  pub x15_server_format: Vec<ServerFormat>,
}
/// Defines the ServerFormat Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x:CT_ServerFormat/x15:serverFormat")]
pub struct ServerFormat {
  /// Culture
  #[sdk(attr(qname = ":culture"))]
  pub culture: Option<crate::simple_type::StringValue>,
  /// Format
  #[sdk(attr(qname = ":format"))]
  pub format: Option<crate::simple_type::StringValue>,
}
/// Defines the SlicerCacheOlapLevelName Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(
  office2013,
  qname = "x15:CT_SlicerCacheOlapLevelName/x15:slicerCacheOlapLevelName"
)]
pub struct SlicerCacheOlapLevelName {
  /// uniqueName
  #[sdk(attr(office2013, qname = ":uniqueName"))]
  pub unique_name: crate::simple_type::StringValue,
  /// count
  #[sdk(attr(office2013, qname = ":count"))]
  pub count: crate::simple_type::UInt32Value,
}
/// Defines the SurveyPrSurveyElementPr Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_SurveyElementPr/x15:surveyPr")]
pub struct SurveyPrSurveyElementPr {
  /// cssClass
  #[sdk(attr(office2013, qname = ":cssClass"))]
  pub css_class: Option<crate::simple_type::StringValue>,
  /// bottom
  #[sdk(attr(office2013, qname = ":bottom"))]
  pub bottom: Option<crate::simple_type::Int32Value>,
  /// top
  #[sdk(attr(office2013, qname = ":top"))]
  pub top: Option<crate::simple_type::Int32Value>,
  /// left
  #[sdk(attr(office2013, qname = ":left"))]
  pub left: Option<crate::simple_type::Int32Value>,
  /// right
  #[sdk(attr(office2013, qname = ":right"))]
  pub right: Option<crate::simple_type::Int32Value>,
  /// width
  #[sdk(attr(office2013, qname = ":width"))]
  pub width: Option<crate::simple_type::UInt32Value>,
  /// height
  #[sdk(attr(office2013, qname = ":height"))]
  pub height: Option<crate::simple_type::UInt32Value>,
  /// position
  #[sdk(attr(office2013, qname = ":position"))]
  pub position: Option<SurveyPosition>,
  /// Defines the ExtensionList Class.
  #[sdk(child(office2013, qname = "x:CT_ExtensionList/x15:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the TitlePrSurveyElementPr Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_SurveyElementPr/x15:titlePr")]
pub struct TitlePrSurveyElementPr {
  /// cssClass
  #[sdk(attr(office2013, qname = ":cssClass"))]
  pub css_class: Option<crate::simple_type::StringValue>,
  /// bottom
  #[sdk(attr(office2013, qname = ":bottom"))]
  pub bottom: Option<crate::simple_type::Int32Value>,
  /// top
  #[sdk(attr(office2013, qname = ":top"))]
  pub top: Option<crate::simple_type::Int32Value>,
  /// left
  #[sdk(attr(office2013, qname = ":left"))]
  pub left: Option<crate::simple_type::Int32Value>,
  /// right
  #[sdk(attr(office2013, qname = ":right"))]
  pub right: Option<crate::simple_type::Int32Value>,
  /// width
  #[sdk(attr(office2013, qname = ":width"))]
  pub width: Option<crate::simple_type::UInt32Value>,
  /// height
  #[sdk(attr(office2013, qname = ":height"))]
  pub height: Option<crate::simple_type::UInt32Value>,
  /// position
  #[sdk(attr(office2013, qname = ":position"))]
  pub position: Option<SurveyPosition>,
  /// Defines the ExtensionList Class.
  #[sdk(child(office2013, qname = "x:CT_ExtensionList/x15:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the DescriptionPrSurveyElementPr Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_SurveyElementPr/x15:descriptionPr")]
pub struct DescriptionPrSurveyElementPr {
  /// cssClass
  #[sdk(attr(office2013, qname = ":cssClass"))]
  pub css_class: Option<crate::simple_type::StringValue>,
  /// bottom
  #[sdk(attr(office2013, qname = ":bottom"))]
  pub bottom: Option<crate::simple_type::Int32Value>,
  /// top
  #[sdk(attr(office2013, qname = ":top"))]
  pub top: Option<crate::simple_type::Int32Value>,
  /// left
  #[sdk(attr(office2013, qname = ":left"))]
  pub left: Option<crate::simple_type::Int32Value>,
  /// right
  #[sdk(attr(office2013, qname = ":right"))]
  pub right: Option<crate::simple_type::Int32Value>,
  /// width
  #[sdk(attr(office2013, qname = ":width"))]
  pub width: Option<crate::simple_type::UInt32Value>,
  /// height
  #[sdk(attr(office2013, qname = ":height"))]
  pub height: Option<crate::simple_type::UInt32Value>,
  /// position
  #[sdk(attr(office2013, qname = ":position"))]
  pub position: Option<SurveyPosition>,
  /// Defines the ExtensionList Class.
  #[sdk(child(office2013, qname = "x:CT_ExtensionList/x15:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the QuestionsPrSurveyElementPr Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_SurveyElementPr/x15:questionsPr")]
pub struct QuestionsPrSurveyElementPr {
  /// cssClass
  #[sdk(attr(office2013, qname = ":cssClass"))]
  pub css_class: Option<crate::simple_type::StringValue>,
  /// bottom
  #[sdk(attr(office2013, qname = ":bottom"))]
  pub bottom: Option<crate::simple_type::Int32Value>,
  /// top
  #[sdk(attr(office2013, qname = ":top"))]
  pub top: Option<crate::simple_type::Int32Value>,
  /// left
  #[sdk(attr(office2013, qname = ":left"))]
  pub left: Option<crate::simple_type::Int32Value>,
  /// right
  #[sdk(attr(office2013, qname = ":right"))]
  pub right: Option<crate::simple_type::Int32Value>,
  /// width
  #[sdk(attr(office2013, qname = ":width"))]
  pub width: Option<crate::simple_type::UInt32Value>,
  /// height
  #[sdk(attr(office2013, qname = ":height"))]
  pub height: Option<crate::simple_type::UInt32Value>,
  /// position
  #[sdk(attr(office2013, qname = ":position"))]
  pub position: Option<SurveyPosition>,
  /// Defines the ExtensionList Class.
  #[sdk(child(office2013, qname = "x:CT_ExtensionList/x15:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the QuestionPrSurveyElementPr Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_SurveyElementPr/x15:questionPr")]
pub struct QuestionPrSurveyElementPr {
  /// cssClass
  #[sdk(attr(office2013, qname = ":cssClass"))]
  pub css_class: Option<crate::simple_type::StringValue>,
  /// bottom
  #[sdk(attr(office2013, qname = ":bottom"))]
  pub bottom: Option<crate::simple_type::Int32Value>,
  /// top
  #[sdk(attr(office2013, qname = ":top"))]
  pub top: Option<crate::simple_type::Int32Value>,
  /// left
  #[sdk(attr(office2013, qname = ":left"))]
  pub left: Option<crate::simple_type::Int32Value>,
  /// right
  #[sdk(attr(office2013, qname = ":right"))]
  pub right: Option<crate::simple_type::Int32Value>,
  /// width
  #[sdk(attr(office2013, qname = ":width"))]
  pub width: Option<crate::simple_type::UInt32Value>,
  /// height
  #[sdk(attr(office2013, qname = ":height"))]
  pub height: Option<crate::simple_type::UInt32Value>,
  /// position
  #[sdk(attr(office2013, qname = ":position"))]
  pub position: Option<SurveyPosition>,
  /// Defines the ExtensionList Class.
  #[sdk(child(office2013, qname = "x:CT_ExtensionList/x15:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the SurveyQuestions Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_SurveyQuestions/x15:questions")]
pub struct SurveyQuestions {
  /// Defines the QuestionsPrSurveyElementPr Class.
  #[sdk(child(office2013, qname = "x15:CT_SurveyElementPr/x15:questionsPr"))]
  pub questions_pr_survey_element_pr: Option<std::boxed::Box<QuestionsPrSurveyElementPr>>,
  /// Defines the SurveyQuestion Class.
  #[sdk(child(office2013, qname = "x15:CT_SurveyQuestion/x15:question"))]
  pub x15_question: Vec<SurveyQuestion>,
}
/// Defines the SurveyQuestion Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_SurveyQuestion/x15:question")]
pub struct SurveyQuestion {
  /// binding
  #[sdk(attr(office2013, qname = ":binding"))]
  pub binding: crate::simple_type::UInt32Value,
  /// text
  #[sdk(attr(office2013, qname = ":text"))]
  pub text: Option<crate::simple_type::StringValue>,
  /// type
  #[sdk(attr(office2013, qname = ":type"))]
  pub r#type: Option<QuestionType>,
  /// format
  #[sdk(attr(office2013, qname = ":format"))]
  pub format: Option<QuestionFormat>,
  /// helpText
  #[sdk(attr(office2013, qname = ":helpText"))]
  pub help_text: Option<crate::simple_type::StringValue>,
  /// required
  #[sdk(attr(office2013, qname = ":required"))]
  pub required: Option<crate::simple_type::BooleanValue>,
  /// defaultValue
  #[sdk(attr(office2013, qname = ":defaultValue"))]
  pub default_value: Option<crate::simple_type::StringValue>,
  /// decimalPlaces
  #[sdk(attr(office2013, qname = ":decimalPlaces"))]
  pub decimal_places: Option<crate::simple_type::UInt32Value>,
  /// rowSource
  #[sdk(attr(office2013, qname = ":rowSource"))]
  pub row_source: Option<crate::simple_type::StringValue>,
  /// Defines the QuestionPrSurveyElementPr Class.
  #[sdk(child(office2013, qname = "x15:CT_SurveyElementPr/x15:questionPr"))]
  pub question_pr_survey_element_pr: Option<std::boxed::Box<QuestionPrSurveyElementPr>>,
  /// Defines the ExtensionList Class.
  #[sdk(child(office2013, qname = "x:CT_ExtensionList/x15:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the Timeline Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_Timeline/x15:timeline")]
pub struct Timeline {
  /// name
  #[sdk(attr(office2013, qname = ":name"))]
  pub name: crate::simple_type::StringValue,
  /// cache
  #[sdk(attr(office2013, qname = ":cache"))]
  pub cache: crate::simple_type::StringValue,
  /// caption
  #[sdk(attr(office2013, qname = ":caption"))]
  pub caption: Option<crate::simple_type::StringValue>,
  /// showHeader
  #[sdk(attr(office2013, qname = ":showHeader"))]
  pub show_header: Option<crate::simple_type::BooleanValue>,
  /// showSelectionLabel
  #[sdk(attr(office2013, qname = ":showSelectionLabel"))]
  pub show_selection_label: Option<crate::simple_type::BooleanValue>,
  /// showTimeLevel
  #[sdk(attr(office2013, qname = ":showTimeLevel"))]
  pub show_time_level: Option<crate::simple_type::BooleanValue>,
  /// showHorizontalScrollbar
  #[sdk(attr(office2013, qname = ":showHorizontalScrollbar"))]
  pub show_horizontal_scrollbar: Option<crate::simple_type::BooleanValue>,
  /// level
  #[sdk(attr(office2013, qname = ":level"))]
  pub level: crate::simple_type::UInt32Value,
  /// selectionLevel
  #[sdk(attr(office2013, qname = ":selectionLevel"))]
  pub selection_level: crate::simple_type::UInt32Value,
  /// scrollPosition
  #[sdk(attr(office2013, qname = ":scrollPosition"))]
  pub scroll_position: Option<crate::simple_type::DateTimeValue>,
  /// style
  #[sdk(attr(office2013, qname = ":style"))]
  pub style: Option<crate::simple_type::StringValue>,
  /// Defines the ExtensionList Class.
  #[sdk(child(office2013, qname = "x:CT_ExtensionList/x15:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the TimelineCachePivotTable Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_TimelineCachePivotTable/x15:pivotTable")]
pub struct TimelineCachePivotTable {
  /// tabId
  #[sdk(attr(office2013, qname = ":tabId"))]
  pub tab_id: crate::simple_type::UInt32Value,
  /// name
  #[sdk(attr(office2013, qname = ":name"))]
  pub name: crate::simple_type::StringValue,
}
/// Defines the SelectionTimelineRange Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_TimelineRange/x15:selection")]
pub struct SelectionTimelineRange {
  /// startDate
  #[sdk(attr(office2013, qname = ":startDate"))]
  pub start_date: crate::simple_type::DateTimeValue,
  /// endDate
  #[sdk(attr(office2013, qname = ":endDate"))]
  pub end_date: crate::simple_type::DateTimeValue,
}
/// Defines the BoundsTimelineRange Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_TimelineRange/x15:bounds")]
pub struct BoundsTimelineRange {
  /// startDate
  #[sdk(attr(office2013, qname = ":startDate"))]
  pub start_date: crate::simple_type::DateTimeValue,
  /// endDate
  #[sdk(attr(office2013, qname = ":endDate"))]
  pub end_date: crate::simple_type::DateTimeValue,
}
/// Defines the AutoFilter Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x:CT_AutoFilter/x15:autoFilter")]
pub struct AutoFilter {
  /// Cell or Range Reference
  #[sdk(attr(qname = ":ref"))]
  pub reference: Option<crate::simple_type::StringValue>,
  /// AutoFilter Column.
  #[sdk(child(qname = "x:CT_FilterColumn/x:filterColumn"))]
  pub x_filter_column: Vec<crate::schemas::x::FilterColumn>,
  /// Sort State for Auto Filter.
  #[sdk(child(qname = "x:CT_SortState/x:sortState"))]
  pub x_sort_state: Option<std::boxed::Box<crate::schemas::x::SortState>>,
  /// Defines the ExtensionList Class.
  #[sdk(child(qname = "x:CT_ExtensionList/x:extLst"))]
  pub x_ext_lst: Option<crate::schemas::x::ExtensionList>,
}
/// Defines the TimelineCachePivotTables Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_TimelineCachePivotTables/x15:pivotTables")]
pub struct TimelineCachePivotTables {
  /// Defines the TimelineCachePivotTable Class.
  #[sdk(child(office2013, qname = "x15:CT_TimelineCachePivotTable/x15:pivotTable"))]
  pub x15_pivot_table: Vec<TimelineCachePivotTable>,
}
/// Defines the TimelineState Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_TimelineState/x15:state")]
pub struct TimelineState {
  /// singleRangeFilterState
  #[sdk(attr(office2013, qname = ":singleRangeFilterState"))]
  pub single_range_filter_state: Option<crate::simple_type::BooleanValue>,
  /// minimalRefreshVersion
  #[sdk(attr(office2013, qname = ":minimalRefreshVersion"))]
  pub minimal_refresh_version: crate::simple_type::UInt32Value,
  /// lastRefreshVersion
  #[sdk(attr(office2013, qname = ":lastRefreshVersion"))]
  pub last_refresh_version: crate::simple_type::UInt32Value,
  /// pivotCacheId
  #[sdk(attr(office2013, qname = ":pivotCacheId"))]
  pub pivot_cache_id: crate::simple_type::UInt32Value,
  /// filterType
  #[sdk(attr(office2013, qname = ":filterType"))]
  pub filter_type: crate::schemas::x::PivotFilterValues,
  /// filterId
  #[sdk(attr(office2013, qname = ":filterId"))]
  pub filter_id: Option<crate::simple_type::UInt32Value>,
  /// filterTabId
  #[sdk(attr(office2013, qname = ":filterTabId"))]
  pub filter_tab_id: Option<crate::simple_type::UInt32Value>,
  /// filterPivotName
  #[sdk(attr(office2013, qname = ":filterPivotName"))]
  pub filter_pivot_name: Option<crate::simple_type::StringValue>,
  /// Defines the SelectionTimelineRange Class.
  #[sdk(child(office2013, qname = "x15:CT_TimelineRange/x15:selection"))]
  pub selection_timeline_range: Option<SelectionTimelineRange>,
  /// Defines the BoundsTimelineRange Class.
  #[sdk(child(office2013, qname = "x15:CT_TimelineRange/x15:bounds"))]
  pub bounds_timeline_range: std::boxed::Box<BoundsTimelineRange>,
  /// Defines the MovingPeriodState Class.
  #[sdk(child(office2013, qname = "x15:CT_MovingPeriodState/x15:movingPeriodState"))]
  pub moving_period_state: Option<MovingPeriodState>,
  /// Defines the ExtensionList Class.
  #[sdk(child(office2013, qname = "x:CT_ExtensionList/x15:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the PivotRow Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(office2013, qname = "x15:CT_PivotRow/x15:pivotRow")]
pub struct PivotRow {
  /// r
  #[sdk(attr(office2013, qname = ":r"))]
  pub reference: Option<crate::simple_type::UInt32Value>,
  /// count
  #[sdk(attr(office2013, qname = ":count"))]
  pub count: crate::simple_type::UInt32Value,
  /// Defines the PivotValueCell Class.
  #[sdk(child(office2013, qname = "x15:CT_PivotValueCell/x15:c"))]
  pub x15_c: Vec<PivotValueCell>,
}
#[derive(Clone, Debug, PartialEq, ooxmlsdk_derive::SdkChoice)]
pub enum OleDbPrpopertiesChoice {
  /// Defines the DbTables Class.
  #[sdk(child(office2013, qname = "x15:CT_DbTables/x15:dbTables"))]
  X15DbTables(std::boxed::Box<DbTables>),
  /// Defines the DbCommand Class.
  #[sdk(child(office2013, qname = "x15:CT_DbCommand/x15:dbCommand"))]
  X15DbCommand(std::boxed::Box<DbCommand>),
}