Skip to content

Latest commit

 

History

History
37 lines (30 loc) · 1.43 KB

File metadata and controls

37 lines (30 loc) · 1.43 KB

ProcessOutput

Process

Properties

Name Type Description Notes
description str [optional]
id str
inputs Dict[str, InputDescriptionOutput] [optional]
job_control_options List[JobControlOptions] [optional]
keywords List[str] [optional]
links List[Link] [optional]
metadata List[MetadataOutput] [optional]
outputs Dict[str, OutputDescriptionOutput] [optional]
title str [optional]
version str

Example

from unity_sps_ogc_processes_api_python_client.models.process_output import ProcessOutput

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

# convert the object into a dict
process_output_dict = process_output_instance.to_dict()
# create an instance of ProcessOutput from a dict
process_output_from_dict = ProcessOutput.from_dict(process_output_dict)

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