Skip to content

DERequest

Properties

Name Type Description Notes
case_group DERequestCaseGroup
control_group DERequestCaseGroup
ex_query str [optional]
limit int This parameter determines the number of results to retrieve per page, with the default set at 2000. [optional]
offset int This parameter allows skipping a specified number of results, with the default set at 0. [optional]

Example

from odm_api.models.de_request import DERequest

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

# convert the object into a dict
de_request_dict = de_request_instance.to_dict()
# create an instance of DERequest from a dict
de_request_from_dict = DERequest.from_dict(de_request_dict)
[Back to Model list] [Back to API list] [Back to README]