Skip to content

DetachedObject

Properties

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

Example

from odm_api.models.detached_object import DetachedObject

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

# convert the object into a dict
detached_object_dict = detached_object_instance.to_dict()
# create an instance of DetachedObject from a dict
detached_object_from_dict = DetachedObject.from_dict(detached_object_dict)
[Back to Model list] [Back to API list] [Back to README]