Interface AutomationRun
interface AutomationRun {
automationId: string;
executions: {
endedAt: Date;
output: ({ status: "USER_ERROR"; error: any; }) | ({ status: "SERVER_ERROR"; error: any; }) | ({ data?: any; status: "SUCCESS"; });
startedAt: Date;
}[];
id: string;
status: "USER_ERROR" | "SERVER_ERROR" | "SUCCESS" | "PENDING" | "EXECUTING" | "RETRY";
triggerEvent: {
payload: any;
};
}
automationId: string;
executions: {
endedAt: Date;
output: ({ status: "USER_ERROR"; error: any; }) | ({ status: "SERVER_ERROR"; error: any; }) | ({ data?: any; status: "SUCCESS"; });
startedAt: Date;
}[];
id: string;
status: "USER_ERROR" | "SERVER_ERROR" | "SUCCESS" | "PENDING" | "EXECUTING" | "RETRY";
triggerEvent: {
payload: any;
};
}
Hierarchy
- StaticDecode<typeof tAutomationRun>
- AutomationRun
Index
Properties
Properties
automationId
automationId : string = ...
executions
executions: {
endedAt: Date;
output: ({ status: "USER_ERROR"; error: any; }) | ({ status: "SERVER_ERROR"; error: any; }) | ({ data?: any; status: "SUCCESS"; });
startedAt: Date;
}[] = ...
endedAt: Date;
output: ({ status: "USER_ERROR"; error: any; }) | ({ status: "SERVER_ERROR"; error: any; }) | ({ data?: any; status: "SUCCESS"; });
startedAt: Date;
}[] = ...
Type declaration
ended
At : Dateoutput: ({ status: "USER_ERROR"; error: any; }) | ({ status: "SERVER_ERROR"; error: any; }) | ({ data?: any; status: "SUCCESS"; })
started
At : Date
id
id: string = ...
status
status: "USER_ERROR" | "SERVER_ERROR" | "SUCCESS" | "PENDING" | "EXECUTING" | "RETRY" = ...
triggerEvent
triggerEvent : {
payload: any;
} = ...
payload: any;
} = ...
Type declaration
payload: any