DERequestCaseGroup
Properties
| Name |
Type |
Description |
Notes |
| study_filter |
str |
|
[optional] |
| study_query |
str |
|
[optional] |
| sample_filter |
str |
|
[optional] |
| sample_query |
str |
|
[optional] |
| library_filter |
str |
|
[optional] |
| library_query |
str |
|
[optional] |
| preparation_filter |
str |
|
[optional] |
| preparation_query |
str |
|
[optional] |
| cell_query |
str |
|
[optional] |
| search_specific_terms |
bool |
|
[optional] |
Example
from odm_api.models.de_request_case_group import DERequestCaseGroup
# TODO update the JSON string below
json = "{}"
# create an instance of DERequestCaseGroup from a JSON string
de_request_case_group_instance = DERequestCaseGroup.from_json(json)
# print the JSON string representation of the object
print(DERequestCaseGroup.to_json())
# convert the object into a dict
de_request_case_group_dict = de_request_case_group_instance.to_dict()
# create an instance of DERequestCaseGroup from a dict
de_request_case_group_from_dict = DERequestCaseGroup.from_dict(de_request_case_group_dict)
[Back to Model list] [Back to API list] [Back to README]