Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.24 KB

OutputDescriptionInput.md

File metadata and controls

32 lines (25 loc) · 1.24 KB

OutputDescriptionInput

OutputDescription

Properties

Name Type Description Notes
description str [optional]
keywords List[str] [optional]
metadata List[MetadataInput] [optional]
var_schema ModelSchemaInput
title str [optional]

Example

from unity_sps_ogc_processes_api_python_client.models.output_description_input import OutputDescriptionInput

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

# convert the object into a dict
output_description_input_dict = output_description_input_instance.to_dict()
# create an instance of OutputDescriptionInput from a dict
output_description_input_from_dict = OutputDescriptionInput.from_dict(output_description_input_dict)

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