Files
backend/libs/common/src/integrations/tuya/interfaces/tap-to-run-action.interface.ts
hannathkadher 7e9894b1d3 Fixed scene
2024-11-02 19:36:56 +04:00

12 lines
258 B
TypeScript

export interface ConvertedExecutorProperty {
function_code?: string;
function_value?: any;
delay_seconds?: number;
}
export interface ConvertedAction {
entity_id: string;
action_executor: string;
executor_property?: ConvertedExecutorProperty;
}