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
use serde::Deserialize;
use serde::de::Unexpected;
use serde::de;
use serde::Deserializer;
use zigbee2mqtt_types_base_types::LastSeen;
/// schlage:BE468 [zigbee2mqtt link](https://www.zigbee2mqtt.io/devices/BE468.html)
///
/// 
#[cfg_attr(feature = "debug", derive(Debug))]
#[cfg_attr(feature = "clone", derive(Clone))]
#[derive(Deserialize)]
pub struct ZigbeeBe468 {
    ///Triggered action on the lock
    pub action: ZigbeeBe468Action,
    ///Source of the triggered action on the lock
    pub action_source_name: ZigbeeBe468Actionsourcename,
    ///ID of user that triggered the action on the lock
    pub action_user: f64,
    ///Remaining battery in %, can take up to 24 hours before reported.
    pub battery: f64,
    ///Link quality (signal strength)
    pub linkquality: f64,
    ///Actual state of the lock
    pub lock_state: ZigbeeBe468Lockstate,
    ///Zigbee herdsman description: "State of the lock"
    ///The string values get converted into boolean with: LOCK = true and UNLOCK = false
    #[serde(deserialize_with = "zigbeebe468_state_deserializer")]
    pub state: bool,
    /// Optional last_seen type, set as a global zigbee2mqtt setting
    pub last_seen: Option<LastSeen>,
    /// Optional elapsed type
    pub elapsed: Option<u64>,
}
/// Deserialize bool from String with custom value mapping
fn zigbeebe468_state_deserializer<'de, D>(deserializer: D) -> Result<bool, D::Error>
where
    D: Deserializer<'de>,
{
    match String::deserialize(deserializer)?.as_ref() {
        "LOCK" => Ok(true),
        "UNLOCK" => Ok(false),
        other => Err(de::Error::invalid_value(
            Unexpected::Str(other),
            &"Value expected was either LOCK or UNLOCK",
        )),
    }
}


#[cfg_attr(feature = "debug", derive(Debug))]
#[cfg_attr(feature = "clone", derive(Clone))]
#[derive(Deserialize, PartialEq)]
pub enum ZigbeeBe468Action {
    #[serde(rename = "auto_lock")]
    AutoLock,
    #[serde(rename = "key_lock")]
    KeyLock,
    #[serde(rename = "key_unlock")]
    KeyUnlock,
    #[serde(rename = "lock")]
    Lock,
    #[serde(rename = "lock_failure_invalid_pin_or_id")]
    LockFailureInvalidPinOrId,
    #[serde(rename = "lock_failure_invalid_schedule")]
    LockFailureInvalidSchedule,
    #[serde(rename = "manual_lock")]
    ManualLock,
    #[serde(rename = "manual_unlock")]
    ManualUnlock,
    #[serde(rename = "non_access_user_operational_event")]
    NonAccessUserOperationalEvent,
    #[serde(rename = "one_touch_lock")]
    OneTouchLock,
    #[serde(rename = "schedule_lock")]
    ScheduleLock,
    #[serde(rename = "schedule_unlock")]
    ScheduleUnlock,
    #[serde(rename = "unknown")]
    Unknown,
    #[serde(rename = "unlock")]
    Unlock,
    #[serde(rename = "unlock_failure_invalid_pin_or_id")]
    UnlockFailureInvalidPinOrId,
    #[serde(rename = "unlock_failure_invalid_schedule")]
    UnlockFailureInvalidSchedule,
}
#[cfg_attr(feature = "debug", derive(Debug))]
#[cfg_attr(feature = "clone", derive(Clone))]
#[derive(Deserialize, PartialEq)]
pub enum ZigbeeBe468Actionsourcename {
    #[serde(rename = "keypad")]
    Keypad,
    #[serde(rename = "manual")]
    Manual,
    #[serde(rename = "rf")]
    Rf,
    #[serde(rename = "rfid")]
    Rfid,
}
#[cfg_attr(feature = "debug", derive(Debug))]
#[cfg_attr(feature = "clone", derive(Clone))]
#[derive(Deserialize, PartialEq)]
pub enum ZigbeeBe468Lockstate {
    #[serde(rename = "locked")]
    Locked,
    #[serde(rename = "not_fully_locked")]
    NotFullyLocked,
    #[serde(rename = "unlocked")]
    Unlocked,
}
#[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"}