Collections
Properties
Example
from dmi_open_data.metobs.models.collections import Collections
# TODO update the JSON string below
json = "{}"
# create an instance of Collections from a JSON string
collections_instance = Collections.from_json(json)
# print the JSON string representation of the object
print(Collections.to_json())
# convert the object into a dict
collections_dict = collections_instance.to_dict()
# create an instance of Collections from a dict
collections_from_dict = Collections.from_dict(collections_dict)
[Back to Model list] [Back to API list] [Back to README]