Skip to content

SearchStudyRequestPage

Properties

Name Type Description Notes
offset int Param says to skip that many links before beginning to return links. Default: 0. [optional]
limit int Param says to limit the count of returned links. Default: 1000. [optional]

Example

from odm_api.models.search_study_request_page import SearchStudyRequestPage

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

# convert the object into a dict
search_study_request_page_dict = search_study_request_page_instance.to_dict()
# create an instance of SearchStudyRequestPage from a dict
search_study_request_page_from_dict = SearchStudyRequestPage.from_dict(search_study_request_page_dict)
[Back to Model list] [Back to API list] [Back to README]