Skip to content

CommitList

Properties

Name Type Description Notes
pagination Pagination
results List[Commit]

Example

from lakefs_enterprise_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)