Skip to content

Diff

Properties

Name Type Description Notes
type str
path str
path_type str
size_bytes int represents the size of the added/changed/deleted entry [optional]
right DiffObjectStat [optional]

Example

from lakefs_enterprise_sdk.models.diff import Diff

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

# convert the object into a dict
diff_dict = diff_instance.to_dict()
# create an instance of Diff from a dict
diff_form_dict = diff.from_dict(diff_dict)