CommitList
Properties
Example
from lakefs_sdk.models.commit_list import CommitList
# TODO update the JSON string below
json = "{}"
# create an instance of CommitList from a JSON string
commit_list_instance = CommitList.from_json(json)
# print the JSON string representation of the object
print CommitList.to_json()
# convert the object into a dict
commit_list_dict = commit_list_instance.to_dict()
# create an instance of CommitList from a dict
commit_list_form_dict = commit_list.from_dict(commit_list_dict)
[Back to Model list] [Back to API list] [Back to README]