MetadataPresentation¶
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.metadata_presentation import MetadataPresentation
# TODO update the JSON string below
json = "{}"
# create an instance of MetadataPresentation from a JSON string
metadata_presentation_instance = MetadataPresentation.from_json(json)
# print the JSON string representation of the object
print(MetadataPresentation.to_json())
# convert the object into a dict
metadata_presentation_dict = metadata_presentation_instance.to_dict()
# create an instance of MetadataPresentation from a dict
metadata_presentation_from_dict = MetadataPresentation.from_dict(metadata_presentation_dict)