Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1014 Bytes

File metadata and controls

31 lines (24 loc) · 1014 Bytes

LandingPage

LandingPage

Properties

Name Type Description Notes
attribution str [optional]
description str [optional]
links List[Link]
title str [optional]

Example

from unity_sps_ogc_processes_api_python_client.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]