Skip to content

Relationships

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.relationships import Relationships

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

# convert the object into a dict
relationships_dict = relationships_instance.to_dict()
# create an instance of Relationships from a dict
relationships_from_dict = Relationships.from_dict(relationships_dict)
[Back to Model list] [Back to API list] [Back to README]