CRRequest
Properties
| Name |
Type |
Description |
Notes |
| cell_group |
DERequestCaseGroup |
|
[optional] |
| ex_query |
str |
|
[optional] |
Example
from odm_api.models.cr_request import CRRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CRRequest from a JSON string
cr_request_instance = CRRequest.from_json(json)
# print the JSON string representation of the object
print(CRRequest.to_json())
# convert the object into a dict
cr_request_dict = cr_request_instance.to_dict()
# create an instance of CRRequest from a dict
cr_request_from_dict = CRRequest.from_dict(cr_request_dict)
[Back to Model list] [Back to API list] [Back to README]