Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1005 Bytes

ResultInit.md

File metadata and controls

31 lines (23 loc) · 1005 Bytes

ResultInit

Properties

Name Type Description Notes
meta_analysis_id str [optional]
studyset_snapshot object [optional]
annotation_snapshot object [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_form_dict = result_init.from_dict(result_init_dict)

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