Name |
Type |
Description |
Notes |
meta_analysis_id |
str |
|
[optional] |
studyset_snapshot |
object |
|
[optional] |
annotation_snapshot |
object |
|
[optional] |
cli_version |
str |
|
[optional] |
from neurosynth_compose_sdk.models.result_init import ResultInit
# TODO update the JSON string below
json = "{}"
# create an instance of ResultInit from a JSON string
result_init_instance = ResultInit.from_json(json)
# print the JSON string representation of the object
print ResultInit.to_json()
# convert the object into a dict
result_init_dict = result_init_instance.to_dict()
# create an instance of ResultInit from a dict
result_init_form_dict = result_init.from_dict(result_init_dict)
[Back to Model list] [Back to API list] [Back to README]