interface Flow {
    id: string;
    name: string;
    key: string;
    integrationId?: string;
    integration?: Integration;
    universalFlowId?: string;
    universalFlowRevision?: string;
    parametersSchema?: DataSchema;
    nodes?: Record<string, FlowNode>;
    autoCreateInstances?: boolean;
    archivedAt?: string;
    revision: string;
    customized?: boolean;
    appliedToIntegrations?: AppliedToIntegrations<Flow>;
    isDeployed?: boolean;
}

Properties

id: string
name: string
key: string
integrationId?: string
integration?: Integration
universalFlowId?: string
universalFlowRevision?: string
parametersSchema?: DataSchema
nodes?: Record<string, FlowNode>
autoCreateInstances?: boolean
archivedAt?: string
revision: string
customized?: boolean
appliedToIntegrations?: AppliedToIntegrations<Flow>
isDeployed?: boolean