Name | Type | Description | Notes |
---|---|---|---|
results | List[PipelineRunResult] | [optional] | |
metadata | Metadata | [optional] |
from neurostore_sdk.models.pipeline_run_result_list import PipelineRunResultList
# TODO update the JSON string below
json = "{}"
# create an instance of PipelineRunResultList from a JSON string
pipeline_run_result_list_instance = PipelineRunResultList.from_json(json)
# print the JSON string representation of the object
print PipelineRunResultList.to_json()
# convert the object into a dict
pipeline_run_result_list_dict = pipeline_run_result_list_instance.to_dict()
# create an instance of PipelineRunResultList from a dict
pipeline_run_result_list_form_dict = pipeline_run_result_list.from_dict(pipeline_run_result_list_dict)