Trading Assistant API Documentation - v0.1.0
    Preparing search index...

    Interface WorkflowRun

    interface WorkflowRun {
        workflow_id: string;
        workflow_name: string;
        status: WorkflowStatus;
        progress: number;
        started_at: string;
        completed_at?: string;
        error?: string;
        metrics?: { duration_ms?: number; records_processed?: number };
    }
    Index

    Properties

    workflow_id: string
    workflow_name: string
    progress: number
    started_at: string
    completed_at?: string
    error?: string
    metrics?: { duration_ms?: number; records_processed?: number }