Dataset object
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| name | str | ||
| description | str | [optional] | |
| organization_id | str | the associated Organization Id | [readonly] |
| workspace_id | str | the associated Workspace Id | [readonly] |
| tags | List[str] | the list of tags | |
| additional_data | Dict[str, object] | Free form additional data | [optional] |
| parts | List[DatasetPart] | ||
| create_info | DatasetEditInfo | The details of the Dataset creation | |
| update_info | DatasetEditInfo | The details of the Dataset last update | |
| security | DatasetSecurity |
from cosmotech_api.models.dataset import Dataset
# TODO update the JSON string below
json = "{}"
# create an instance of Dataset from a JSON string
dataset_instance = Dataset.from_json(json)
# print the JSON string representation of the object
print(Dataset.to_json())
# convert the object into a dict
dataset_dict = dataset_instance.to_dict()
# create an instance of Dataset from a dict
dataset_from_dict = Dataset.from_dict(dataset_dict)