UNPKG

@gentrace/core

Version:
49 lines (48 loc) 913 B
/** * 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; }