@gentrace/core
Version:
Core Gentrace Node.JS library
52 lines (50 loc) • 1.04 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 UpdateTestCase
*/
export interface UpdateTestCase {
/**
* ID of the test case to update
* @type {string}
* @memberof UpdateTestCase
*/
id: string;
/**
* Name of the test case
* @type {string}
* @memberof UpdateTestCase
*/
name?: string | null;
/**
* Inputs for the test case
* @type {object}
* @memberof UpdateTestCase
*/
inputs?: object | null;
/**
* Expected outputs for the test case
* @type {object}
* @memberof UpdateTestCase
*/
expectedOutputs?: object | null;
/**
* Archive status for the test case
* @type {boolean}
* @memberof UpdateTestCase
*/
archived?: boolean | null;
}