UNPKG

@gentrace/core

Version:
52 lines (50 loc) 896 B
/* 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 CreateDatasetV2 */ export interface CreateDatasetV2 { /** * * @type {string} * @memberof CreateDatasetV2 */ name: string; /** * * @type {string} * @memberof CreateDatasetV2 */ description?: string | null; /** * * @type {string} * @memberof CreateDatasetV2 */ pipelineId?: string; /** * * @type {string} * @memberof CreateDatasetV2 */ pipelineSlug?: string; /** * * @type {boolean} * @memberof CreateDatasetV2 */ isGolden?: boolean; }