Interface representing weather-based automation details

interface ESPWeatherAutomationDetails {
    actions: ESPAutomationAction[];
    eventOperator: ESPAutomationEventOperator;
    events: (ESPWeatherEvent | ESPWeatherCondition)[];
    location?: ESPGeoCoordinates;
    metadata?: any;
    name: string;
    retrigger: boolean;
}

Properties

metadata?: any
name: string
retrigger: boolean