Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

StudyReturnAllOfStudysets.md

File metadata and controls

31 lines (22 loc) · 1.1 KB

StudyReturnAllOfStudysets

Properties

Name Type Description Notes
name str [optional]
id str [optional]
description str [optional]

Example

from neurostore_sdk.models.study_return_all_of_studysets import StudyReturnAllOfStudysets

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

# convert the object into a dict
study_return_all_of_studysets_dict = study_return_all_of_studysets_instance.to_dict()
# create an instance of StudyReturnAllOfStudysets from a dict
study_return_all_of_studysets_from_dict = StudyReturnAllOfStudysets.from_dict(study_return_all_of_studysets_dict)

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