Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.42 KB

File metadata and controls

35 lines (26 loc) · 1.42 KB

DatasetPartCreateRequest

Dataset part create request object

Properties

Name Type Description Notes
name str
source_name str the source data name (e.g. filename associated to the dataset part)
description str [optional]
tags List[str] [optional] [default to []]
additional_data Dict[str, object] Free form additional data [optional]
type DatasetPartTypeEnum [optional] [default to DatasetPartTypeEnum.FILE]

Example

from cosmotech_api.models.dataset_part_create_request import DatasetPartCreateRequest

# TODO update the JSON string below
json = "{}"
# create an instance of DatasetPartCreateRequest from a JSON string
dataset_part_create_request_instance = DatasetPartCreateRequest.from_json(json)
# print the JSON string representation of the object
print(DatasetPartCreateRequest.to_json())

# convert the object into a dict
dataset_part_create_request_dict = dataset_part_create_request_instance.to_dict()
# create an instance of DatasetPartCreateRequest from a dict
dataset_part_create_request_from_dict = DatasetPartCreateRequest.from_dict(dataset_part_create_request_dict)

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