@gentrace/core
Version:
Core Gentrace Node.JS library
83 lines (81 loc) • 1.86 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.
*/
/**
*
* @export
* @interface TestCase
*/
export interface TestCase {
/**
* The ID of the test case
* @type {string}
* @memberof TestCase
*/
id: string;
/**
* The date and time when the test case was created
* @type {string}
* @memberof TestCase
*/
createdAt: string;
/**
* The date and time when the test case was archived, can be null if the test case has not been archived
* @type {string}
* @memberof TestCase
* @deprecated
*/
archivedAt: string | null;
/**
* The date and time when the test case was deleted, can be null if the test case has not been deleted
* @type {string}
* @memberof TestCase
*/
deletedAt: string | null;
/**
* The date and time when the test case was last updated
* @type {string}
* @memberof TestCase
*/
updatedAt: string;
/**
* The expected outputs for the test case
* @type {object}
* @memberof TestCase
*/
expectedOutputs?: object | null;
/**
* The input data for the test case as a JSON object
* @type {{ [key: string]: any; }}
* @memberof TestCase
*/
inputs: { [key: string]: any };
/**
* The name of the test case
* @type {string}
* @memberof TestCase
*/
name: string;
/**
* The ID of the pipeline that the test case belongs to
* @type {string}
* @memberof TestCase
*/
pipelineId: string;
/**
* The ID of the dataset that the test case belongs to
* @type {string}
* @memberof TestCase
*/
datasetId: string;
}