Skip to content

OmicsResponseMetadataWithId

Properties

Name Type Description Notes
data List[MetadataWithId] [optional]
results_exhausted bool [optional]
log List[str] [optional]
cursor str [optional]

Example

from odm_api.models.omics_response_metadata_with_id import OmicsResponseMetadataWithId

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

# convert the object into a dict
omics_response_metadata_with_id_dict = omics_response_metadata_with_id_instance.to_dict()
# create an instance of OmicsResponseMetadataWithId from a dict
omics_response_metadata_with_id_from_dict = OmicsResponseMetadataWithId.from_dict(omics_response_metadata_with_id_dict)
[Back to Model list] [Back to API list] [Back to README]