Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.09 KB

StudyRequestRelationships.md

File metadata and controls

28 lines (20 loc) · 1.09 KB

StudyRequestRelationships

Properties

Name Type Description Notes
analyses StudyRequestRelationshipsAnalyses [optional]

Example

from neurostore_sdk.models.study_request_relationships import StudyRequestRelationships

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

# convert the object into a dict
study_request_relationships_dict = study_request_relationships_instance.to_dict()
# create an instance of StudyRequestRelationships from a dict
study_request_relationships_form_dict = study_request_relationships.from_dict(study_request_relationships_dict)

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