Skip to content

LandingPage

Properties

Name Type Description Notes
links List[Link] [optional]
title str [optional]
description str [optional]
conforms_to List[str] [optional]
stac_version str [optional]
type str [optional]
id str [optional]

Example

from dmi_open_data.forecastdata.models.landing_page import LandingPage

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

# convert the object into a dict
landing_page_dict = landing_page_instance.to_dict()
# create an instance of LandingPage from a dict
landing_page_from_dict = LandingPage.from_dict(landing_page_dict)
[Back to Model list] [Back to API list] [Back to README]