Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 942 Bytes

StudyRequestAllOf.md

File metadata and controls

28 lines (20 loc) · 942 Bytes

StudyRequestAllOf

Properties

Name Type Description Notes
pmcid str [optional]

Example

from neurostore_sdk.models.study_request_all_of import StudyRequestAllOf

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

# convert the object into a dict
study_request_all_of_dict = study_request_all_of_instance.to_dict()
# create an instance of StudyRequestAllOf from a dict
study_request_all_of_form_dict = study_request_all_of.from_dict(study_request_all_of_dict)

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