/* tslint:disable */ /* eslint-disable */ /** * 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. */ // May contain unused imports in some cases // @ts-ignore import { LocalEvaluation } from "./local-evaluation"; // May contain unused imports in some cases // @ts-ignore 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} * @memberof V1TestResultSimplePostRequestTestRunsInner */ evaluations?: Array; /** * Optional path which describes the organizational hierarchy of this test run in relation to all the pipeline tests. * @type {Array} * @memberof V1TestResultSimplePostRequestTestRunsInner */ path?: Array | null; /** * * @type {string} * @memberof V1TestResultSimplePostRequestTestRunsInner */ error?: string | null; }