| Name |
Type |
Description |
Notes |
| count |
int |
|
|
| next |
str |
|
[optional] |
| previous |
str |
|
[optional] |
| results |
List[Project] |
|
|
from epiccore.models.projects_list200_response import ProjectsList200Response
# TODO update the JSON string below
json = "{}"
# create an instance of ProjectsList200Response from a JSON string
projects_list200_response_instance = ProjectsList200Response.from_json(json)
# print the JSON string representation of the object
print ProjectsList200Response.to_json()
# convert the object into a dict
projects_list200_response_dict = projects_list200_response_instance.to_dict()
# create an instance of ProjectsList200Response from a dict
projects_list200_response_form_dict = projects_list200_response.from_dict(projects_list200_response_dict)
[Back to Model list] [Back to API list] [Back to README]