ManagedObject
Properties
| Name |
Type |
Description |
Notes |
| genestackaccession |
str |
|
|
| object_type |
str |
|
|
| owner_email |
str |
|
|
| created_at |
datetime |
|
|
Example
from odm_api.models.managed_object import ManagedObject
# TODO update the JSON string below
json = "{}"
# create an instance of ManagedObject from a JSON string
managed_object_instance = ManagedObject.from_json(json)
# print the JSON string representation of the object
print(ManagedObject.to_json())
# convert the object into a dict
managed_object_dict = managed_object_instance.to_dict()
# create an instance of ManagedObject from a dict
managed_object_from_dict = ManagedObject.from_dict(managed_object_dict)
[Back to Model list] [Back to API list] [Back to README]