@nexartis/nexartis-nanda-node-sdk - v1.2.1
    Preparing search index...

    Interface WorkflowRun

    A single workflow run record as returned by the backend.

    interface WorkflowRun {
        completed_at?: string | null;
        created_at?: string;
        id: string;
        input?: Record<string, unknown>;
        output?: Record<string, unknown> | null;
        started_at?: string;
        status: string;
        trigger_type?: string;
        workflow_id: string;
    }
    Index

    Properties

    completed_at?: string | null
    created_at?: string
    id: string
    input?: Record<string, unknown>
    output?: Record<string, unknown> | null
    started_at?: string
    status: string
    trigger_type?: string
    workflow_id: string