Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.23 KB

File metadata and controls

36 lines (27 loc) · 1.23 KB

PipelineStudyResult

Properties

Name Type Description Notes
id str
pipeline_config_id str [optional]
base_study_id str [optional]
config_id str [optional]
date_executed datetime [optional]
file_inputs object [optional]
result_data object [optional]
status str [optional]

Example

from neurostore_sdk.models.pipeline_study_result import PipelineStudyResult

# TODO update the JSON string below
json = "{}"
# create an instance of PipelineStudyResult from a JSON string
pipeline_study_result_instance = PipelineStudyResult.from_json(json)
# print the JSON string representation of the object
print(PipelineStudyResult.to_json())

# convert the object into a dict
pipeline_study_result_dict = pipeline_study_result_instance.to_dict()
# create an instance of PipelineStudyResult from a dict
pipeline_study_result_from_dict = PipelineStudyResult.from_dict(pipeline_study_result_dict)

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