DatasetDiff
Properties
| Name |
Type |
Description |
Notes |
| format_version |
DatasetValueChange |
|
[optional] |
| description |
DatasetValueChange |
|
[optional] |
| metadata |
List[DatasetMetadataChange] |
|
|
| data |
List[DatasetDataItemChange] |
|
|
Example
from lakefs_enterprise_sdk.models.dataset_diff import DatasetDiff
# TODO update the JSON string below
json = "{}"
# create an instance of DatasetDiff from a JSON string
dataset_diff_instance = DatasetDiff.from_json(json)
# print the JSON string representation of the object
print DatasetDiff.to_json()
# convert the object into a dict
dataset_diff_dict = dataset_diff_instance.to_dict()
# create an instance of DatasetDiff from a dict
dataset_diff_form_dict = dataset_diff.from_dict(dataset_diff_dict)