Collection
Properties
| Name |
Type |
Description |
Notes |
| id |
str |
|
[optional] |
| title |
str |
|
[optional] |
| description |
str |
|
[optional] |
| links |
List[Link] |
|
[optional] |
| extent |
Extent |
|
[optional] |
| crs |
List[str] |
|
[optional] |
| item_type |
str |
|
[optional] |
Example
from dmi_open_data.metobs.models.collection import Collection
# TODO update the JSON string below
json = "{}"
# create an instance of Collection from a JSON string
collection_instance = Collection.from_json(json)
# print the JSON string representation of the object
print(Collection.to_json())
# convert the object into a dict
collection_dict = collection_instance.to_dict()
# create an instance of Collection from a dict
collection_from_dict = Collection.from_dict(collection_dict)
[Back to Model list] [Back to API list] [Back to README]