Files
eufy-security-client-dz/build/mqtt/model.d.ts
2025-11-11 00:04:55 -06:00

25 lines
559 B
TypeScript

export interface DeviceSmartLockNotifyData {
stationSn: string;
deviceSn: string;
eventType: number;
eventTime: number;
shortUserId: string;
unknown1: string;
nickName: string;
userId: string;
unknown2: string;
deviceName: string;
unknown3: string;
lockState: string;
}
export interface DeviceSmartLockNotify {
timestamp: number;
uuid: string;
data: DeviceSmartLockNotifyData;
}
export interface DeviceSmartLockMessage {
eventType: number;
userId: string;
data: DeviceSmartLockNotify;
}