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