Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.34 KB

File metadata and controls

30 lines (21 loc) · 1.34 KB

StudysetReturnRelationships

Properties

Name Type Description Notes
studyset_studies List[StudysetReturnRelationshipsStudysetStudiesInner] Association records for studies in this studyset (includes stub UUIDs for mapping). [optional]
studies StudysetReturnRelationshipsStudies [optional]

Example

from neurostore_sdk.models.studyset_return_relationships import StudysetReturnRelationships

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

# convert the object into a dict
studyset_return_relationships_dict = studyset_return_relationships_instance.to_dict()
# create an instance of StudysetReturnRelationships from a dict
studyset_return_relationships_from_dict = StudysetReturnRelationships.from_dict(studyset_return_relationships_dict)

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