Type Alias robotVacuumCleanerS1PlusWebhookContext

robotVacuumCleanerS1PlusWebhookContext: deviceWebhookContext & {
    battery: number;
    onlineStatus: "online" | "offline";
    workingStatus:
        | "Standby"
        | "Clearing"
        | "Paused"
        | "GotoChargeBase"
        | "Charging"
        | "ChargeDone"
        | "Dormant"
        | "InTrouble"
        | "InRemoteControl"
        | "InDustCollecting";
}