OmicsResponseDataPresentation
Properties
Example
from odm_api.models.omics_response_data_presentation import OmicsResponseDataPresentation
# TODO update the JSON string below
json = "{}"
# create an instance of OmicsResponseDataPresentation from a JSON string
omics_response_data_presentation_instance = OmicsResponseDataPresentation.from_json(json)
# print the JSON string representation of the object
print(OmicsResponseDataPresentation.to_json())
# convert the object into a dict
omics_response_data_presentation_dict = omics_response_data_presentation_instance.to_dict()
# create an instance of OmicsResponseDataPresentation from a dict
omics_response_data_presentation_from_dict = OmicsResponseDataPresentation.from_dict(omics_response_data_presentation_dict)
[Back to Model list] [Back to API list] [Back to README]