Skip to content

Files

Latest commit

c070a8e · Feb 25, 2025

History

History
28 lines (19 loc) · 1.1 KB

StudysetReturnRelationshipsStudies.md

File metadata and controls

28 lines (19 loc) · 1.1 KB

StudysetReturnRelationshipsStudies

Properties

Name Type Description Notes

Example

from neurostore_sdk.models.studyset_return_relationships_studies import StudysetReturnRelationshipsStudies

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

# convert the object into a dict
studyset_return_relationships_studies_dict = studyset_return_relationships_studies_instance.to_dict()
# create an instance of StudysetReturnRelationshipsStudies from a dict
studyset_return_relationships_studies_from_dict = StudysetReturnRelationshipsStudies.from_dict(studyset_return_relationships_studies_dict)

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