Skip to content

Latest commit

 

History

History
43 lines (36 loc) · 1.65 KB

File metadata and controls

43 lines (36 loc) · 1.65 KB

DatasetPart

Dataset part object

Properties

Name Type Description Notes
id string [default to undefined]
name string [default to undefined]
sourceName string the source data name (e.g. filename associated to the dataset part) [default to undefined]
description string [optional] [default to undefined]
tags Array<string> [default to undefined]
additionalData { [key: string]: any; } Free form additional data [optional] [default to undefined]
type DatasetPartTypeEnum [default to undefined]
organizationId string the associated Organization Id [readonly] [default to undefined]
workspaceId string the associated Workspace Id [readonly] [default to undefined]
datasetId string the associated Dataset Id [readonly] [default to undefined]
createInfo DatasetEditInfo The details of the Dataset creation [default to undefined]
updateInfo DatasetEditInfo The details of the Dataset last update [default to undefined]

Example

import { DatasetPart } from '@cosmotech/api-ts';

const instance: DatasetPart = {
    id,
    name,
    sourceName,
    description,
    tags,
    additionalData,
    type,
    organizationId,
    workspaceId,
    datasetId,
    createInfo,
    updateInfo,
};

[Back to Model list] [Back to API list] [Back to README]