Interface FlowInstance

interface FlowInstance {
    id: string;
    userId: string;
    user?: Customer;
    connectionId?: string;
    connection?: Connection;
    flow?: Flow;
    flowId?: string;
    universalFlowId?: string;
    integrationId: string;
    integration?: Integration;
    instanceKey?: string;
    name: string;
    parameters?: any;
    parametersSchema?: DataSchema;
    nodes?: Record<string, FlowInstanceNode>;
    enabled: boolean;
    createdAt: string;
    updatedAt: string;
    dependencies?: IntegrationElementInstance[];
    state?: WorkspaceElementState;
    outdated?: boolean;
    customized?: { name?: boolean; nodes?: boolean };
}

Properties

id: string
userId: string
user?: Customer
connectionId?: string
connection?: Connection
flow?: Flow
flowId?: string
universalFlowId?: string
integrationId: string
integration?: Integration
instanceKey?: string
name: string
parameters?: any
parametersSchema?: DataSchema
nodes?: Record<string, FlowInstanceNode>
enabled: boolean
createdAt: string
updatedAt: string
outdated?: boolean
customized?: { name?: boolean; nodes?: boolean }