Skip to content

DetachedCollectionDataInner

Properties

Name Type Description Notes
genestackaccession str
detached_object_type str
owner_email str
created_at datetime

Example

from odm_api.models.detached_collection_data_inner import DetachedCollectionDataInner

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

# convert the object into a dict
detached_collection_data_inner_dict = detached_collection_data_inner_instance.to_dict()
# create an instance of DetachedCollectionDataInner from a dict
detached_collection_data_inner_from_dict = DetachedCollectionDataInner.from_dict(detached_collection_data_inner_dict)
[Back to Model list] [Back to API list] [Back to README]