| Name |
Type |
Description |
Notes |
| name |
str |
Human-readable name for the dataset. |
|
| metadata |
Dict[str, object] |
Optional metadata blob: schema_type, description, row_count, format hints, etc. Platform treats dataset bytes as opaque — format details live here. |
[optional] |
from saturn_api.models.dataset_create import DatasetCreate
# TODO update the JSON string below
json = "{}"
# create an instance of DatasetCreate from a JSON string
dataset_create_instance = DatasetCreate.from_json(json)
# print the JSON string representation of the object
print(DatasetCreate.to_json())
# convert the object into a dict
dataset_create_dict = dataset_create_instance.to_dict()
# create an instance of DatasetCreate from a dict
dataset_create_from_dict = DatasetCreate.from_dict(dataset_create_dict)
[Back to Model list] [Back to API list] [Back to README]