| Name | Type | Description | Notes |
|---|---|---|---|
| provenance | object | [optional] | |
| meta_analyses | ProjectMetaAnalyses | [optional] | |
| name | str | [optional] | |
| description | str | [optional] | |
| public | bool | whether the project is public or private | [optional] |
| neurostore_study | NeurostoreStudy | [optional] | |
| neurostore_url | str | [optional] | |
| draft | bool | [optional] [readonly] |
from neurosynth_compose_sdk.models.project import Project
# TODO update the JSON string below
json = "{}"
# create an instance of Project from a JSON string
project_instance = Project.from_json(json)
# print the JSON string representation of the object
print(Project.to_json())
# convert the object into a dict
project_dict = project_instance.to_dict()
# create an instance of Project from a dict
project_from_dict = Project.from_dict(project_dict)