Execution Data (convenience interface)

interface ExecutionData {
    context?: Record<string, any>;
    duration_ms: number;
    error?: string;
    execution_type: string;
    function_calls?: number;
    logs_count?: number;
    status: string;
    variables_assigned?: number;
}

Properties

context?: Record<string, any>
duration_ms: number
error?: string
execution_type: string
function_calls?: number
logs_count?: number
status: string
variables_assigned?: number