@gentrace/core
Version:
Core Gentrace Node.JS library
80 lines (77 loc) • 2.25 kB
text/typescript
/* 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 { MetadataValueObject } from "./metadata-value-object";
// May contain unused imports in some cases
// @ts-ignore
import { RunPathSection } from "./run-path-section";
// May contain unused imports in some cases
// @ts-ignore
import { StepRun } from "./step-run";
/**
*
* @export
* @interface V1TestResultIdPostRequestTestRunsInner
*/
export interface V1TestResultIdPostRequestTestRunsInner {
/**
* The ID of the test run
* @type {string}
* @memberof V1TestResultIdPostRequestTestRunsInner
*/
id?: string | null;
/**
* The ID of the test case. Mutually exclusive with \'name\' and \'inputs\'.
* @type {string}
* @memberof V1TestResultIdPostRequestTestRunsInner
*/
caseId?: string;
/**
* The name of the test run. Used with \'inputs\' and mutually exclusive with \'caseId\'.
* @type {string}
* @memberof V1TestResultIdPostRequestTestRunsInner
*/
name?: string;
/**
* The input data for the test run. Used with \'name\' and mutually exclusive with \'caseId\'.
* @type {{ [key: string]: any; }}
* @memberof V1TestResultIdPostRequestTestRunsInner
*/
inputs?: { [key: string]: any };
/**
*
* @type {{ [key: string]: MetadataValueObject; }}
* @memberof V1TestResultIdPostRequestTestRunsInner
*/
metadata?: { [key: string]: MetadataValueObject } | null;
/**
*
* @type {Array<StepRun>}
* @memberof V1TestResultIdPostRequestTestRunsInner
*/
stepRuns: Array<StepRun>;
/**
* Optional path which describes the organizational hierarchy of this test run in relation to all the pipeline tests.
* @type {Array<RunPathSection>}
* @memberof V1TestResultIdPostRequestTestRunsInner
*/
path?: Array<RunPathSection> | null;
/**
*
* @type {string}
* @memberof V1TestResultIdPostRequestTestRunsInner
*/
error?: string | null;
}