Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.26 KB

OutputDescriptionOutput.md

File metadata and controls

32 lines (25 loc) · 1.26 KB

OutputDescriptionOutput

OutputDescription

Properties

Name Type Description Notes
description str [optional]
keywords List[str] [optional]
metadata List[MetadataOutput] [optional]
var_schema ModelSchemaOutput
title str [optional]

Example

from unity_sps_ogc_processes_api_python_client.models.output_description_output import OutputDescriptionOutput

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

# convert the object into a dict
output_description_output_dict = output_description_output_instance.to_dict()
# create an instance of OutputDescriptionOutput from a dict
output_description_output_from_dict = OutputDescriptionOutput.from_dict(output_description_output_dict)

[Back to Model list] [Back to API list] [Back to README]