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
//
// -----------------------------------------------------------------------------
// THIS FILE WAS @generated AUTOMATICALLY. DO NOT MODIFY THIS FILE MANUALLY.
// -----------------------------------------------------------------------------
//
/// Defines the RichValueRefreshIntervals Class.
///
/// Available in Office2021 and above.
///
/// When the object is serialized out as xml, it's qualified name is xlrvr:refreshIntervals.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrvr:CT_RichValueRefreshIntervals/xlrvr:refreshIntervals")]
pub struct RichValueRefreshIntervals {
/// _
#[sdk(child(qname = "xlrvr:CT_RichValueRefreshInterval/xlrvr:refreshInterval"))]
pub xlrvr_refresh_interval: Vec<RichValueRefreshInterval>,
}
/// Defines the RichValueRefreshInterval Class.
///
/// Available in Office2021 and above.
///
/// When the object is serialized out as xml, it's qualified name is xlrvr:refreshInterval.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "xlrvr:CT_RichValueRefreshInterval/xlrvr:refreshInterval")]
pub struct RichValueRefreshInterval {
/// resourceIdInt
///
/// Available in Office2021 and above.
///
/// Represents the following attribute in the schema: :resourceIdInt
#[sdk(attr(qname = ":resourceIdInt"))]
pub resource_id_int: Option<crate::simple_type::Int32Value>,
/// resourceIdStr
///
/// Available in Office2021 and above.
///
/// Represents the following attribute in the schema: :resourceIdStr
#[sdk(attr(qname = ":resourceIdStr"))]
pub resource_id_str: Option<crate::simple_type::StringValue>,
/// interval
///
/// Available in Office2021 and above.
///
/// Represents the following attribute in the schema: :interval
#[sdk(attr(qname = ":interval"))]
pub interval: crate::simple_type::Int32Value,
}