Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.15 KB

StudyReturnAllOf.md

File metadata and controls

32 lines (24 loc) · 1.15 KB

StudyReturnAllOf

Properties

Name Type Description Notes
studysets List[StudyReturnAllOfStudysetsInner] [optional]
has_coordinates bool [optional]
has_images bool [optional]
base_study str [optional]
pmcid str [optional]

Example

from neurostore_sdk.models.study_return_all_of import StudyReturnAllOf

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

# convert the object into a dict
study_return_all_of_dict = study_return_all_of_instance.to_dict()
# create an instance of StudyReturnAllOf from a dict
study_return_all_of_form_dict = study_return_all_of.from_dict(study_return_all_of_dict)

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