DetachedCollection
Properties
Example
from odm_api.models.detached_collection import DetachedCollection
# TODO update the JSON string below
json = "{}"
# create an instance of DetachedCollection from a JSON string
detached_collection_instance = DetachedCollection.from_json(json)
# print the JSON string representation of the object
print(DetachedCollection.to_json())
# convert the object into a dict
detached_collection_dict = detached_collection_instance.to_dict()
# create an instance of DetachedCollection from a dict
detached_collection_from_dict = DetachedCollection.from_dict(detached_collection_dict)
[Back to Model list] [Back to API list] [Back to README]