UNPKG

@gentrace/core

Version:
53 lines (52 loc) 1.22 kB
/** * 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 { FullRun } from "./full-run"; import { ResolvedStepRun } from "./resolved-step-run"; import { TestCase } from "./test-case"; import { TestEvaluation } from "./test-evaluation"; /** * * @export * @interface ExpandedTestRunAllOf */ export interface ExpandedTestRunAllOf { /** * * @type {FullRun} * @memberof ExpandedTestRunAllOf */ full?: FullRun; /** * * @type {Array<ResolvedStepRun>} * @memberof ExpandedTestRunAllOf */ steps?: Array<ResolvedStepRun>; /** * * @type {TestCase} * @memberof ExpandedTestRunAllOf */ case?: TestCase; /** * * @type {Array<TestEvaluation>} * @memberof ExpandedTestRunAllOf */ evaluations?: Array<TestEvaluation>; /** * Error message if the test run failed * @type {string} * @memberof ExpandedTestRunAllOf */ error?: string | null; }