Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 931 Bytes

File metadata and controls

27 lines (20 loc) · 931 Bytes

DatasetPartUpdateRequest

Dataset part update request object

Properties

Name Type Description Notes
sourceName string the source data name (e.g. filename associated to the dataset part) [optional] [default to undefined]
description string [optional] [default to undefined]
tags Array<string> [optional] [default to undefined]
additionalData { [key: string]: any; } Free form additional data [optional] [default to undefined]

Example

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

const instance: DatasetPartUpdateRequest = {
    sourceName,
    description,
    tags,
    additionalData,
};

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