Membrane React - v0.2.1
    Preparing search index...

    Interface Flow

    interface Flow {
        id: string;
        name: string;
        key: string;
        state?: WorkspaceElementState;
        errors?: ErrorData[];
        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>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    id: string
    name: string
    key: string
    errors?: ErrorData[]
    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>