DatasetRun

interface ApiDatasetRun {
    createdAt: string;
    datasetId: string;
    datasetName: string;
    description?: null | string;
    id: string;
    metadata?: any;
    name: string;
    updatedAt: string;
}

Properties

createdAt: string

The date and time when the dataset run was created

date-time

datasetId: string

Id of the associated dataset

datasetName: string

Name of the associated dataset

description?: null | string

Description of the run

id: string

Unique identifier of the dataset run

metadata?: any

Metadata of the dataset run

name: string

Name of the dataset run

updatedAt: string

The date and time when the dataset run was last updated

date-time