Interface representing an automation action

interface ESPAutomationAction {
    deviceName: string;
    nodeId: string;
    param: string;
    value: any;
}

Properties

deviceName: string
nodeId: string
param: string
value: any