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
use serde::Deserialize;
use serde::de::Unexpected;
use serde::de;
use serde::Deserializer;
use zigbee2mqtt_types_base_types::LastSeen;
/// hommyn:MS-20-Z [zigbee2mqtt link](https://www.zigbee2mqtt.io/devices/MS-20-Z.html)
///
/// 
#[cfg_attr(feature = "debug", derive(Debug))]
#[cfg_attr(feature = "clone", derive(Clone))]
#[derive(Deserialize)]
pub struct ZigbeeMsD20Dz {
    ///Remaining battery in %, can take up to 24 hours before reported.
    pub battery: f64,
    ///Zigbee herdsman description: "Indicates if the battery of this device is almost empty"
    ///Boolean values can be an unintuitive way round: value_on = true and value_off = false, consider double checking Zigbee2MQTT to understand what they mean
    pub battery_low: bool,
    ///Link quality (signal strength)
    pub linkquality: f64,
    ///Zigbee herdsman description: "Indicates whether the device detected occupancy"
    ///Boolean values can be an unintuitive way round: value_on = true and value_off = false, consider double checking Zigbee2MQTT to understand what they mean
    pub occupancy: bool,
    ///Zigbee herdsman description: "Indicates whether the device is tampered"
    ///Boolean values can be an unintuitive way round: value_on = true and value_off = false, consider double checking Zigbee2MQTT to understand what they mean
    pub tamper: bool,
    /// Optional last_seen type, set as a global zigbee2mqtt setting
    pub last_seen: Option<LastSeen>,
    /// Optional elapsed type
    pub elapsed: Option<u64>,
}/// hommyn:WS-20-Z [zigbee2mqtt link](https://www.zigbee2mqtt.io/devices/WS-20-Z.html)
///
/// 
#[cfg_attr(feature = "debug", derive(Debug))]
#[cfg_attr(feature = "clone", derive(Clone))]
#[derive(Deserialize)]
pub struct ZigbeeWsD20Dz {
    ///Zigbee herdsman description: "Indicates if the battery of this device is almost empty"
    ///Boolean values can be an unintuitive way round: value_on = true and value_off = false, consider double checking Zigbee2MQTT to understand what they mean
    pub battery_low: bool,
    ///Link quality (signal strength)
    pub linkquality: f64,
    ///Zigbee herdsman description: "Indicates whether the device is tampered"
    ///Boolean values can be an unintuitive way round: value_on = true and value_off = false, consider double checking Zigbee2MQTT to understand what they mean
    pub tamper: bool,
    ///Zigbee herdsman description: "Indicates whether the device detected a water leak"
    ///Boolean values can be an unintuitive way round: value_on = true and value_off = false, consider double checking Zigbee2MQTT to understand what they mean
    pub water_leak: bool,
    /// Optional last_seen type, set as a global zigbee2mqtt setting
    pub last_seen: Option<LastSeen>,
    /// Optional elapsed type
    pub elapsed: Option<u64>,
}
#[cfg(all(feature = "last_seen_epoch", feature = "last_seen_iso_8601"))]
compile_error!{"Feature last_seen epoch and iso_8601 are mutually exclusive and cannot be enabled together.
This was done because it is a global setting in zigbee2mqtt and therefor can't see a reason both would be enabled.
If you have a any reason to have both ways enabled please submit an issue to https://gitlab.com/seam345/zigbee2mqtt-types/-/issues"}