@gentrace/core
Version:
Core Gentrace Node.JS library
64 lines (62 loc) • 1.26 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 DatasetV2
*/
export interface DatasetV2 {
/**
*
* @type {string}
* @memberof DatasetV2
*/
id: string;
/**
* Timestamp in seconds since the UNIX epoch. Can be transformed into a Date object.
* @type {number}
* @memberof DatasetV2
*/
createdAt: number;
/**
* Timestamp in seconds since the UNIX epoch. Can be transformed into a Date object.
* @type {number}
* @memberof DatasetV2
*/
updatedAt: number;
/**
* Timestamp in seconds since the UNIX epoch. Can be transformed into a Date object.
* @type {number}
* @memberof DatasetV2
*/
archivedAt?: number | null;
/**
*
* @type {string}
* @memberof DatasetV2
*/
name: string;
/**
*
* @type {string}
* @memberof DatasetV2
*/
description?: string | null;
/**
*
* @type {string}
* @memberof DatasetV2
*/
pipelineId: string;
}