SearchStudyRequest
Properties
Example
from odm_api.models.search_study_request import SearchStudyRequest
# TODO update the JSON string below
json = "{}"
# create an instance of SearchStudyRequest from a JSON string
search_study_request_instance = SearchStudyRequest.from_json(json)
# print the JSON string representation of the object
print(SearchStudyRequest.to_json())
# convert the object into a dict
search_study_request_dict = search_study_request_instance.to_dict()
# create an instance of SearchStudyRequest from a dict
search_study_request_from_dict = SearchStudyRequest.from_dict(search_study_request_dict)
[Back to Model list] [Back to API list] [Back to README]