Dataset
Properties
| Name |
Type |
Description |
Notes |
| id |
str |
|
|
| creation_date |
int |
Unix Epoch in seconds |
|
| version |
int |
current version; set when reading a single dataset |
[optional] |
| definition |
DatasetDefinitionState |
|
[optional] |
Example
from lakefs_enterprise_sdk.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_form_dict = dataset.from_dict(dataset_dict)