Skip to content

OmicsResponseMetadataPresentationDataInner

A description of object metadata. This will contain: - genestack:accession: the object ID - Study Title (for studies) - Sample ID (for samples) - all other attributes defined in the linked template (if any)

Properties

Name Type Description Notes
metadata MetadataPresentationMetadata [optional]
relationships DataPresentationRelationships [optional]

Example

from odm_api.models.omics_response_metadata_presentation_data_inner import OmicsResponseMetadataPresentationDataInner

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

# convert the object into a dict
omics_response_metadata_presentation_data_inner_dict = omics_response_metadata_presentation_data_inner_instance.to_dict()
# create an instance of OmicsResponseMetadataPresentationDataInner from a dict
omics_response_metadata_presentation_data_inner_from_dict = OmicsResponseMetadataPresentationDataInner.from_dict(omics_response_metadata_presentation_data_inner_dict)
[Back to Model list] [Back to API list] [Back to README]