Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.22 KB

File metadata and controls

34 lines (25 loc) · 1.22 KB

ResultInit

Properties

Name Type Description Notes
meta_analysis_id str [optional]
snapshot_studyset object [optional]
snapshot_annotation object [optional]
snapshot_studyset_id str ID of an existing cached studyset snapshot to link to this result. [optional]
snapshot_annotation_id str ID of an existing cached annotation snapshot to link to this result. [optional]
cli_version str [optional]

Example

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_from_dict = ResultInit.from_dict(result_init_dict)

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