Name | Type | Description | Notes |
---|---|---|---|
results | List[ProjectReturn] | [optional] | |
metadata | object | [optional] |
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)