@gentrace/core
Version:
Core Gentrace Node.JS library
86 lines (85 loc) • 1.52 kB
TypeScript
/**
* Gentrace API
* These API routes are designed to ingest events from clients.
*
* The version of the OpenAPI document: 0.27.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { StepRunContext } from "./step-run-context";
/**
*
* @export
* @interface StepRun
*/
export interface StepRun {
/**
*
* @type {string}
* @memberof StepRun
*/
providerName: string;
/**
*
* @type {string}
* @memberof StepRun
*/
invocation: string;
/**
*
* @type {{ [key: string]: any; }}
* @memberof StepRun
*/
modelParams: {
[key: string]: any;
};
/**
*
* @type {{ [key: string]: any; }}
* @memberof StepRun
*/
inputs: {
[key: string]: any;
};
/**
*
* @type {{ [key: string]: any; }}
* @memberof StepRun
*/
outputs: {
[key: string]: any;
};
/**
*
* @type {StepRunContext}
* @memberof StepRun
*/
context?: StepRunContext;
/**
*
* @type {number}
* @memberof StepRun
*/
elapsedTime: number;
/**
*
* @type {string}
* @memberof StepRun
*/
startTime: string;
/**
*
* @type {string}
* @memberof StepRun
*/
endTime: string;
/**
*
* @type {string}
* @memberof StepRun
*/
error?: string | null;
}