Skip to content

GSRequest

Properties

Name Type Description Notes
cell_group DERequestCaseGroup [optional]
gene_names List[str]
ex_query str [optional]

Example

from odm_api.models.gs_request import GSRequest

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

# convert the object into a dict
gs_request_dict = gs_request_instance.to_dict()
# create an instance of GSRequest from a dict
gs_request_from_dict = GSRequest.from_dict(gs_request_dict)
[Back to Model list] [Back to API list] [Back to README]