Interface IAutomation

interface IAutomation {
    connectorGuids: string[];
    createdAt: string;
    description: string;
    endpointGuids: string[];
    executionToken: string[];
    id: string;
    lastRun: IAutomationRunDetailResponseObject;
    lastRunAt: string;
    lastRunStatus: "failed" | "stopped" | "finished" | "paused" | "running" | "finished with warnings" | "must stop" | "not started" | "starting";
    ownerId: string;
    runMode: "manual" | "triggered" | "webhook" | "scheduled";
    schedules: IAutomationScheduleResponseObject[];
    snippetGuids: string[];
    state: "disabled" | "available" | "unavailable";
    title: string;
    updatedAt: string;
    workspace: object;
}

Properties

connectorGuids: string[]
createdAt: string
description: string
endpointGuids: string[]
executionToken: string[]
id: string
lastRunAt: string
lastRunStatus: "failed" | "stopped" | "finished" | "paused" | "running" | "finished with warnings" | "must stop" | "not started" | "starting"
ownerId: string
runMode: "manual" | "triggered" | "webhook" | "scheduled"
snippetGuids: string[]
state: "disabled" | "available" | "unavailable"
title: string
updatedAt: string
workspace: object