Name | Type | Description | Notes |
---|---|---|---|
study | str | [optional] | |
images | AnalysisRequestRelationshipsImages | [optional] | |
points | AnalysisRequestRelationshipsPoints | [optional] | |
conditions | AnalysisRequestRelationshipsConditions | [optional] |
from neurostore_sdk.models.analysis_request_relationships import AnalysisRequestRelationships
# TODO update the JSON string below
json = "{}"
# create an instance of AnalysisRequestRelationships from a JSON string
analysis_request_relationships_instance = AnalysisRequestRelationships.from_json(json)
# print the JSON string representation of the object
print AnalysisRequestRelationships.to_json()
# convert the object into a dict
analysis_request_relationships_dict = analysis_request_relationships_instance.to_dict()
# create an instance of AnalysisRequestRelationships from a dict
analysis_request_relationships_form_dict = analysis_request_relationships.from_dict(analysis_request_relationships_dict)