Skip to content
This repository was archived by the owner on Oct 12, 2025. It is now read-only.

Latest commit

 

History

History
executable file
·
32 lines (23 loc) · 1.1 KB

File metadata and controls

executable file
·
32 lines (23 loc) · 1.1 KB

ProjectsList200Response

Properties

Name Type Description Notes
count int
next str [optional]
previous str [optional]
results List[Project]

Example

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]