DatasetVersion
Properties
| Name |
Type |
Description |
Notes |
| id |
str |
version identifier (v<N>) |
|
| message |
str |
|
[optional] |
| author |
str |
|
[optional] |
| creation_date |
int |
Unix Epoch in seconds |
|
Example
from lakefs_enterprise_sdk.models.dataset_version import DatasetVersion
# TODO update the JSON string below
json = "{}"
# create an instance of DatasetVersion from a JSON string
dataset_version_instance = DatasetVersion.from_json(json)
# print the JSON string representation of the object
print DatasetVersion.to_json()
# convert the object into a dict
dataset_version_dict = dataset_version_instance.to_dict()
# create an instance of DatasetVersion from a dict
dataset_version_form_dict = dataset_version.from_dict(dataset_version_dict)