Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.07 KB

StudyReturnRelationships.md

File metadata and controls

28 lines (20 loc) · 1.07 KB

StudyReturnRelationships

Properties

Name Type Description Notes
analyses StudyReturnRelationshipsAnalyses [optional]

Example

from neurostore_sdk.models.study_return_relationships import StudyReturnRelationships

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

# convert the object into a dict
study_return_relationships_dict = study_return_relationships_instance.to_dict()
# create an instance of StudyReturnRelationships from a dict
study_return_relationships_form_dict = study_return_relationships.from_dict(study_return_relationships_dict)

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