Type Alias batteryCirculatorFanWebhookContext

batteryCirculatorFanWebhookContext: deviceWebhookContext & {
    battery: number;
    chargingStatus: "charging" | "uncharged";
    fanSpeed: number;
    mode: "direct" | "natural" | "sleep" | "baby";
    nightStatus: "off" | 1 | 2;
    oscillation: "on" | "off";
    powerState: "ON" | "OFF";
    version: string;
    verticalOscillation: "on" | "off";
}