@gentrace/core
Version:
Core Gentrace Node.JS library
67 lines (66 loc) • 1.88 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 { LocalEvaluation } from "./local-evaluation";
import { RunPathSection } from "./run-path-section";
/**
*
* @export
* @interface V1TestResultSimplePostRequestTestRunsInner
*/
export interface V1TestResultSimplePostRequestTestRunsInner {
/**
* The ID of the test run
* @type {string}
* @memberof V1TestResultSimplePostRequestTestRunsInner
*/
id?: string | null;
/**
* The ID of the test case
* @type {string}
* @memberof V1TestResultSimplePostRequestTestRunsInner
*/
caseId: string;
/**
* The input data for the test case
* @type {{ [key: string]: any; }}
* @memberof V1TestResultSimplePostRequestTestRunsInner
*/
inputs: {
[key: string]: any;
};
/**
* The returned outputs for the test case
* @type {{ [key: string]: any; }}
* @memberof V1TestResultSimplePostRequestTestRunsInner
*/
outputs?: {
[key: string]: any;
};
/**
* Optional array of local evaluations
* @type {Array<LocalEvaluation>}
* @memberof V1TestResultSimplePostRequestTestRunsInner
*/
evaluations?: Array<LocalEvaluation>;
/**
* Optional path which describes the organizational hierarchy of this test run in relation to all the pipeline tests.
* @type {Array<RunPathSection>}
* @memberof V1TestResultSimplePostRequestTestRunsInner
*/
path?: Array<RunPathSection> | null;
/**
*
* @type {string}
* @memberof V1TestResultSimplePostRequestTestRunsInner
*/
error?: string | null;
}