Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.39 KB

AnalysisRequestRelationships.md

File metadata and controls

31 lines (23 loc) · 1.39 KB

AnalysisRequestRelationships

Properties

Name Type Description Notes
study str [optional]
images AnalysisRequestRelationshipsImages [optional]
points AnalysisRequestRelationshipsPoints [optional]
conditions AnalysisRequestRelationshipsConditions [optional]

Example

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)

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