Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 939 Bytes

ProjectList.md

File metadata and controls

29 lines (21 loc) · 939 Bytes

ProjectList

Properties

Name Type Description Notes
results List[ProjectReturn] [optional]
metadata object [optional]

Example

from neurosynth_compose_sdk.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_form_dict = project_list.from_dict(project_list_dict)

[Back to Model list] [Back to API list] [Back to README]