| Name | Type | Description | Notes |
|---|---|---|---|
| studies | List[StudysetRequestRelationshipsStudiesInner] | Accepts study IDs or objects containing an ID and an optional curation stub UUID used to keep curation/extraction alignment. | [optional] |
from neurostore_sdk.models.studyset_request_relationships import StudysetRequestRelationships
# TODO update the JSON string below
json = "{}"
# create an instance of StudysetRequestRelationships from a JSON string
studyset_request_relationships_instance = StudysetRequestRelationships.from_json(json)
# print the JSON string representation of the object
print(StudysetRequestRelationships.to_json())
# convert the object into a dict
studyset_request_relationships_dict = studyset_request_relationships_instance.to_dict()
# create an instance of StudysetRequestRelationships from a dict
studyset_request_relationships_from_dict = StudysetRequestRelationships.from_dict(studyset_request_relationships_dict)