ProjectList
Properties
Example
from libica.openapi.v3.models.project_list import ProjectList
# TODO update the JSON string below
json = "{}"
# create an instance of ProjectList from a JSON string
project_list_instance = ProjectList.from_json(json)
# print the JSON string representation of the object
print(ProjectList.to_json())
# convert the object into a dict
project_list_dict = project_list_instance.to_dict()
# create an instance of ProjectList from a dict
project_list_from_dict = ProjectList.from_dict(project_list_dict)
[Back to Model list] [Back to API list] [Back to README]