OmicsResponse
Properties
| Name |
Type |
Description |
Notes |
| data |
List[object] |
|
[optional] |
| results_exhausted |
bool |
|
[optional] |
| log |
List[str] |
|
[optional] |
| cursor |
str |
|
[optional] |
Example
from odm_api.models.omics_response import OmicsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of OmicsResponse from a JSON string
omics_response_instance = OmicsResponse.from_json(json)
# print the JSON string representation of the object
print(OmicsResponse.to_json())
# convert the object into a dict
omics_response_dict = omics_response_instance.to_dict()
# create an instance of OmicsResponse from a dict
omics_response_from_dict = OmicsResponse.from_dict(omics_response_dict)
[Back to Model list] [Back to API list] [Back to README]