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

#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum SupportingPropertyBagValueType {
  #[sdk(rename = "d")]
  #[default]
  D,
  #[sdk(rename = "i")]
  I,
  #[sdk(rename = "b")]
  B,
  #[sdk(rename = "s")]
  S,
  #[sdk(rename = "spb")]
  Spb,
  #[sdk(rename = "spba")]
  Spba,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum SupportingPropertyBagArrayValueType {
  #[sdk(rename = "d")]
  #[default]
  D,
  #[sdk(rename = "i")]
  I,
  #[sdk(rename = "b")]
  B,
  #[sdk(rename = "s")]
  S,
  #[sdk(rename = "spb")]
  Spb,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum ArrayValueType {
  #[sdk(rename = "d")]
  #[default]
  D,
  #[sdk(rename = "i")]
  I,
  #[sdk(rename = "b")]
  B,
  #[sdk(rename = "e")]
  E,
  #[sdk(rename = "s")]
  S,
  #[sdk(rename = "r")]
  R,
  #[sdk(rename = "a")]
  A,
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, ooxmlsdk_derive::SdkEnum)]
pub enum RichFormatPropertyType {
  #[sdk(rename = "b")]
  #[default]
  B,
  #[sdk(rename = "n")]
  N,
  #[sdk(rename = "i")]
  I,
  #[sdk(rename = "s")]
  S,
}
/// Defines the RichFilterColumn Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:filterColumn")]
pub struct RichFilterColumn {
  #[sdk(
        choice(
            child(variant = RichFilters, qname = "xlrd2:filters"),
            child(variant = RichTop10, qname = "xlrd2:top10"),
            child(variant = CustomRichFilters, qname = "xlrd2:customFilters"),
            child(variant = DynamicRichFilter, qname = "xlrd2:dynamicFilter"),
            child(variant = ExtensionList, qname = "xlrd2:extLst")
        )
    )]
  pub rich_filter_column_choice: Option<RichFilterColumnChoice>,
}
/// Defines the RichSortCondition Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:richSortCondition")]
pub struct RichSortCondition {
  /// richSortKey
  #[sdk(attr(qname = ":richSortKey"))]
  pub rich_sort_key: Option<crate::simple_type::StringValue>,
  /// 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<crate::schemas::x14::IconSetTypeValues>,
  /// iconId
  #[sdk(attr(qname = ":iconId"))]
  pub icon_id: Option<crate::simple_type::UInt32Value>,
}
/// Defines the SupportingPropertyBags Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:supportingPropertyBags")]
pub struct SupportingPropertyBags {
  pub xmlns: Vec<crate::common::XmlNamespace>,
  pub xml_header: crate::common::XmlHeaderType,
  /// Defines the SupportingPropertyBagArrayData Class.
  #[sdk(child(qname = "xlrd2:spbArrays"))]
  pub supporting_property_bag_array_data: Option<std::boxed::Box<SupportingPropertyBagArrayData>>,
  /// Defines the SupportingPropertyBagData Class.
  #[sdk(child(qname = "xlrd2:spbData"))]
  pub supporting_property_bag_data: std::boxed::Box<SupportingPropertyBagData>,
}
/// Defines the SupportingPropertyBagStructures Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:spbStructures")]
pub struct SupportingPropertyBagStructures {
  pub xmlns: Vec<crate::common::XmlNamespace>,
  pub xml_header: crate::common::XmlHeaderType,
  /// count
  #[sdk(attr(qname = ":count"))]
  pub count: crate::simple_type::UInt32Value,
  /// Defines the SupportingPropertyBagStructure Class.
  #[sdk(child(qname = "xlrd2:s"))]
  pub supporting_property_bag_structure: Vec<SupportingPropertyBagStructure>,
  /// Defines the ExtensionList Class.
  #[sdk(child(qname = "xlrd2:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the ArrayData Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:arrayData")]
pub struct ArrayData {
  pub xmlns: Vec<crate::common::XmlNamespace>,
  pub xml_header: crate::common::XmlHeaderType,
  /// count
  #[sdk(attr(qname = ":count"))]
  pub count: crate::simple_type::UInt32Value,
  /// Defines the Array Class.
  #[sdk(child(qname = "xlrd2:a"))]
  pub array: Vec<Array>,
  /// Defines the ExtensionList Class.
  #[sdk(child(qname = "xlrd2:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the RichStylesheet Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:richStyleSheet")]
pub struct RichStylesheet {
  pub xmlns: Vec<crate::common::XmlNamespace>,
  pub xml_header: crate::common::XmlHeaderType,
  /// Defines the Dxfs Class.
  #[sdk(child(qname = "xlrd2:dxfs"))]
  pub dxfs: Option<Dxfs>,
  /// Defines the RichFormatProperties Class.
  #[sdk(child(qname = "xlrd2:richProperties"))]
  pub rich_format_properties: Option<RichFormatProperties>,
  /// Defines the RichStyles Class.
  #[sdk(child(qname = "xlrd2:richStyles"))]
  pub rich_styles: Option<RichStyles>,
  /// Defines the ExtensionList Class.
  #[sdk(child(qname = "xlrd2:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the RichValueTypesInfo Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:rvTypesInfo")]
pub struct RichValueTypesInfo {
  pub xmlns: Vec<crate::common::XmlNamespace>,
  pub xml_header: crate::common::XmlHeaderType,
  /// Defines the RichValueGlobalType Class.
  #[sdk(child(qname = "xlrd2:global"))]
  pub rich_value_global_type: Option<std::boxed::Box<RichValueGlobalType>>,
  /// Defines the RichValueTypes Class.
  #[sdk(child(qname = "xlrd2:types"))]
  pub rich_value_types: Option<RichValueTypes>,
  /// Defines the ExtensionList Class.
  #[sdk(child(qname = "xlrd2:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the RichFilters Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:filters")]
pub struct RichFilters {
  /// Defines the RichFilter Class.
  #[sdk(child(qname = "xlrd2:filter"))]
  pub rich_filter: Vec<RichFilter>,
  /// Defines the RichDateGroupItem Class.
  #[sdk(child(qname = "xlrd2:dateGroupItem"))]
  pub rich_date_group_item: Vec<RichDateGroupItem>,
  /// Defines the ExtensionList Class.
  #[sdk(child(qname = "xlrd2:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the RichTop10 Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:top10")]
pub struct RichTop10 {
  /// key
  #[sdk(attr(qname = ":key"))]
  pub key: Option<crate::simple_type::StringValue>,
  /// Top
  #[sdk(attr(qname = ":top"))]
  pub top: Option<crate::simple_type::BooleanValue>,
  /// Filter by Percent
  #[sdk(attr(qname = ":percent"))]
  pub percent: Option<crate::simple_type::BooleanValue>,
  /// Top or Bottom Value
  #[sdk(attr(qname = ":val"))]
  pub val: crate::simple_type::DoubleValue,
  /// Filter Value
  #[sdk(attr(qname = ":filterVal"))]
  pub filter_value: Option<crate::simple_type::DoubleValue>,
}
/// Defines the CustomRichFilters Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:customFilters")]
pub struct CustomRichFilters {
  /// and
  #[sdk(attr(qname = ":and"))]
  pub and: Option<crate::simple_type::BooleanValue>,
  #[sdk(
        choice(
            child(variant = CustomRichFilter, qname = "xlrd2:customFilter"),
            child(variant = ExtensionList, qname = "xlrd2:extLst")
        )
    )]
  pub custom_rich_filters_choice: Vec<CustomRichFiltersChoice>,
}
/// Defines the DynamicRichFilter Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:dynamicFilter")]
pub struct DynamicRichFilter {
  /// key
  #[sdk(attr(qname = ":key"))]
  pub key: Option<crate::simple_type::StringValue>,
  /// Dynamic filter type
  #[sdk(attr(qname = ":type"))]
  pub r#type: crate::schemas::x::DynamicFilterValues,
  /// Value
  #[sdk(attr(qname = ":val"))]
  pub val: Option<crate::simple_type::DoubleValue>,
  /// Max Value
  #[sdk(attr(qname = ":maxVal"))]
  pub max_val: Option<crate::simple_type::DoubleValue>,
  /// valIso
  #[sdk(attr(qname = ":valIso"))]
  pub val_iso: Option<crate::simple_type::DateTimeValue>,
  /// maxValIso
  #[sdk(attr(qname = ":maxValIso"))]
  pub max_val_iso: Option<crate::simple_type::DateTimeValue>,
}
/// Defines the ExtensionList Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:extLst")]
pub struct ExtensionList {
  /// Extension.
  #[sdk(child(qname = "x:ext"))]
  pub extension: Vec<crate::schemas::x::Extension>,
}
/// Defines the RichFilter Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:filter")]
pub struct RichFilter {
  /// key
  #[sdk(attr(qname = ":key"))]
  pub key: Option<crate::simple_type::StringValue>,
  /// val
  #[sdk(attr(qname = ":val"))]
  pub val: Option<crate::simple_type::StringValue>,
  /// blank
  #[sdk(attr(qname = ":blank"))]
  pub blank: Option<crate::simple_type::BooleanValue>,
  /// nodata
  #[sdk(attr(qname = ":nodata"))]
  pub nodata: Option<crate::simple_type::BooleanValue>,
}
/// Defines the RichDateGroupItem Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:dateGroupItem")]
pub struct RichDateGroupItem {
  /// key
  #[sdk(attr(qname = ":key"))]
  pub key: Option<crate::simple_type::StringValue>,
  /// Year
  #[sdk(attr(qname = ":year"))]
  pub year: crate::simple_type::UInt16Value,
  /// Month
  #[sdk(attr(qname = ":month"))]
  pub month: Option<crate::simple_type::UInt16Value>,
  /// Day
  #[sdk(attr(qname = ":day"))]
  pub day: Option<crate::simple_type::UInt16Value>,
  /// Hour
  #[sdk(attr(qname = ":hour"))]
  pub hour: Option<crate::simple_type::UInt16Value>,
  /// Minute
  #[sdk(attr(qname = ":minute"))]
  pub minute: Option<crate::simple_type::UInt16Value>,
  /// Second
  #[sdk(attr(qname = ":second"))]
  pub second: Option<crate::simple_type::UInt16Value>,
  /// Date Time Grouping
  #[sdk(attr(qname = ":dateTimeGrouping"))]
  pub date_time_grouping: crate::schemas::x::DateTimeGroupingValues,
}
/// Defines the CustomRichFilter Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:customFilter")]
pub struct CustomRichFilter {
  /// key
  #[sdk(attr(qname = ":key"))]
  pub key: Option<crate::simple_type::StringValue>,
  /// Filter Comparison Operator
  #[sdk(attr(qname = ":operator"))]
  pub operator: Option<crate::schemas::x::FilterOperatorValues>,
  /// Top or Bottom Value
  #[sdk(attr(qname = ":val"))]
  pub val: Option<crate::simple_type::StringValue>,
}
/// Defines the SupportingPropertyBagArrayData Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:spbArrays")]
pub struct SupportingPropertyBagArrayData {
  /// count
  #[sdk(attr(qname = ":count"))]
  pub count: crate::simple_type::UInt32Value,
  /// Defines the SupportingPropertyBagArray Class.
  #[sdk(child(qname = "xlrd2:a"))]
  pub supporting_property_bag_array: Vec<SupportingPropertyBagArray>,
  /// Defines the ExtensionList Class.
  #[sdk(child(qname = "xlrd2:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the SupportingPropertyBagData Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:spbData")]
pub struct SupportingPropertyBagData {
  /// count
  #[sdk(attr(qname = ":count"))]
  pub count: crate::simple_type::UInt32Value,
  /// Defines the SupportingPropertyBag Class.
  #[sdk(child(qname = "xlrd2:spb"))]
  pub supporting_property_bag: Vec<SupportingPropertyBag>,
  /// Defines the ExtensionList Class.
  #[sdk(child(qname = "xlrd2:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the SupportingPropertyBag Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:spb")]
pub struct SupportingPropertyBag {
  /// s
  #[sdk(attr(qname = ":s"))]
  pub s: crate::simple_type::UInt32Value,
  /// Defines the SupportingPropertyBagValue Class.
  #[sdk(text_child(simple_type = "StringValue", qname = "xlrd2:v"))]
  pub supporting_property_bag_value: Vec<SupportingPropertyBagValue>,
}
/// Defines the SupportingPropertyBagValue Class.
pub type SupportingPropertyBagValue = crate::simple_type::StringValue;
/// Defines the SupportingPropertyBagStructure Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:s")]
pub struct SupportingPropertyBagStructure {
  /// Defines the SupportingPropertyBagKey Class.
  #[sdk(child(qname = "xlrd2:k"))]
  pub supporting_property_bag_key: Vec<SupportingPropertyBagKey>,
}
/// Defines the SupportingPropertyBagKey Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:k")]
pub struct SupportingPropertyBagKey {
  /// n
  #[sdk(attr(qname = ":n"))]
  pub n: crate::simple_type::StringValue,
  /// t
  #[sdk(attr(qname = ":t"))]
  pub t: Option<SupportingPropertyBagValueType>,
}
/// Defines the SupportingPropertyBagArray Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:a")]
pub struct SupportingPropertyBagArray {
  /// count
  #[sdk(attr(qname = ":count"))]
  pub count: crate::simple_type::UInt32Value,
  /// Defines the SupportingPropertyBagArrayValue Class.
  #[sdk(child(qname = "xlrd2:v"))]
  pub supporting_property_bag_array_value: Vec<SupportingPropertyBagArrayValue>,
}
/// Defines the SupportingPropertyBagArrayValue Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:v")]
pub struct SupportingPropertyBagArrayValue {
  /// t
  #[sdk(attr(qname = ":t"))]
  pub t: Option<SupportingPropertyBagArrayValueType>,
  #[sdk(text)]
  pub xml_content: Option<crate::simple_type::StringValue>,
}
/// Defines the Array Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:a")]
pub struct Array {
  /// r
  #[sdk(attr(qname = ":r"))]
  pub r: crate::simple_type::UInt32Value,
  /// c
  #[sdk(attr(qname = ":c"))]
  pub c: Option<crate::simple_type::UInt32Value>,
  /// Defines the ArrayValue Class.
  #[sdk(child(qname = "xlrd2:v"))]
  pub array_value: Vec<ArrayValue>,
}
/// Defines the ArrayValue Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:v")]
pub struct ArrayValue {
  /// t
  #[sdk(attr(qname = ":t"))]
  pub t: Option<ArrayValueType>,
  #[sdk(text)]
  pub xml_content: Option<crate::simple_type::StringValue>,
}
/// Defines the Dxfs Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:dxfs")]
pub struct Dxfs {
  /// 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 RichFormatProperties Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:richProperties")]
pub struct RichFormatProperties {
  /// Defines the RichFormatProperty Class.
  #[sdk(child(qname = "xlrd2:rPr"))]
  pub rich_format_property: Vec<RichFormatProperty>,
}
/// Defines the RichStyles Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:richStyles")]
pub struct RichStyles {
  /// Defines the RichStyle Class.
  #[sdk(child(qname = "xlrd2:rSty"))]
  pub rich_style: Vec<RichStyle>,
}
/// Defines the RichFormatProperty Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:rPr")]
pub struct RichFormatProperty {
  /// n
  #[sdk(attr(qname = ":n"))]
  pub n: crate::simple_type::StringValue,
  /// t
  #[sdk(attr(qname = ":t"))]
  pub t: RichFormatPropertyType,
}
/// Defines the RichStyle Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:rSty")]
pub struct RichStyle {
  /// dxfid
  #[sdk(attr(qname = ":dxfid"))]
  pub dxfid: Option<crate::simple_type::UInt32Value>,
  /// Defines the RichStylePropertyValue Class.
  #[sdk(child(qname = "xlrd2:rpv"))]
  pub rich_style_property_value: Vec<RichStylePropertyValue>,
}
/// Defines the RichStylePropertyValue Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:rpv")]
pub struct RichStylePropertyValue {
  /// i
  #[sdk(attr(qname = ":i"))]
  pub i: crate::simple_type::UInt32Value,
  #[sdk(text)]
  pub xml_content: Option<crate::simple_type::StringValue>,
}
/// Defines the RichValueGlobalType Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:global")]
pub struct RichValueGlobalType {
  /// Defines the RichValueTypeKeyFlags Class.
  #[sdk(child(qname = "xlrd2:keyFlags"))]
  pub rich_value_type_key_flags: Option<RichValueTypeKeyFlags>,
  /// Defines the ExtensionList Class.
  #[sdk(child(qname = "xlrd2:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the RichValueTypes Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:types")]
pub struct RichValueTypes {
  /// Defines the RichValueType Class.
  #[sdk(child(qname = "xlrd2:type"))]
  pub rich_value_type: Vec<RichValueType>,
}
/// Defines the RichValueType Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:type")]
pub struct RichValueType {
  /// name
  #[sdk(attr(qname = ":name"))]
  pub name: crate::simple_type::StringValue,
  /// Defines the RichValueTypeKeyFlags Class.
  #[sdk(child(qname = "xlrd2:keyFlags"))]
  pub rich_value_type_key_flags: Option<RichValueTypeKeyFlags>,
  /// Defines the ExtensionList Class.
  #[sdk(child(qname = "xlrd2:extLst"))]
  pub extension_list: Option<ExtensionList>,
}
/// Defines the RichValueTypeKeyFlags Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:keyFlags")]
pub struct RichValueTypeKeyFlags {
  /// Defines the RichValueTypeReservedKey Class.
  #[sdk(child(qname = "xlrd2:key"))]
  pub rich_value_type_reserved_key: Vec<RichValueTypeReservedKey>,
}
/// Defines the RichValueTypeReservedKey Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:key")]
pub struct RichValueTypeReservedKey {
  /// name
  #[sdk(attr(qname = ":name"))]
  pub name: crate::simple_type::StringValue,
  /// Defines the RichValueTypeReservedKeyFlag Class.
  #[sdk(child(qname = "xlrd2:flag"))]
  pub rich_value_type_reserved_key_flag: Vec<RichValueTypeReservedKeyFlag>,
}
/// Defines the RichValueTypeReservedKeyFlag Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrd2:flag")]
pub struct RichValueTypeReservedKeyFlag {
  /// name
  #[sdk(attr(qname = ":name"))]
  pub name: crate::simple_type::StringValue,
  /// value
  #[sdk(attr(qname = ":value"))]
  pub value: crate::simple_type::BooleanValue,
}
#[derive(Clone, Debug, PartialEq)]
pub enum RichFilterColumnChoice {
  /// Defines the RichFilters Class.
  RichFilters(std::boxed::Box<RichFilters>),
  /// Defines the RichTop10 Class.
  RichTop10(std::boxed::Box<RichTop10>),
  /// Defines the CustomRichFilters Class.
  CustomRichFilters(std::boxed::Box<CustomRichFilters>),
  /// Defines the DynamicRichFilter Class.
  DynamicRichFilter(std::boxed::Box<DynamicRichFilter>),
  /// Defines the ExtensionList Class.
  ExtensionList(std::boxed::Box<ExtensionList>),
}
#[derive(Clone, Debug, PartialEq)]
pub enum CustomRichFiltersChoice {
  /// Defines the CustomRichFilter Class.
  CustomRichFilter(std::boxed::Box<CustomRichFilter>),
  /// Defines the ExtensionList Class.
  ExtensionList(std::boxed::Box<ExtensionList>),
}