Skip to content

DatasetVersionList

Properties

Name Type Description Notes
pagination Pagination
results List[DatasetVersion]

Example

from lakefs_enterprise_sdk.models.dataset_version_list import DatasetVersionList

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

# convert the object into a dict
dataset_version_list_dict = dataset_version_list_instance.to_dict()
# create an instance of DatasetVersionList from a dict
dataset_version_list_form_dict = dataset_version_list.from_dict(dataset_version_list_dict)