DataPresentationRelationships
Properties
| Name |
Type |
Description |
Notes |
| sample |
str |
|
[optional] [readonly] |
| cell |
str |
|
[optional] [readonly] |
| library |
str |
|
[optional] [readonly] |
| preparation |
str |
|
[optional] [readonly] |
Example
from odm_api.models.data_presentation_relationships import DataPresentationRelationships
# TODO update the JSON string below
json = "{}"
# create an instance of DataPresentationRelationships from a JSON string
data_presentation_relationships_instance = DataPresentationRelationships.from_json(json)
# print the JSON string representation of the object
print(DataPresentationRelationships.to_json())
# convert the object into a dict
data_presentation_relationships_dict = data_presentation_relationships_instance.to_dict()
# create an instance of DataPresentationRelationships from a dict
data_presentation_relationships_from_dict = DataPresentationRelationships.from_dict(data_presentation_relationships_dict)
[Back to Model list] [Back to API list] [Back to README]