Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.03 KB

ProcessListOutput.md

File metadata and controls

29 lines (22 loc) · 1.03 KB

ProcessListOutput

ProcessList

Properties

Name Type Description Notes
links List[Link]
processes List[ProcessSummaryOutput]

Example

from unity_sps_ogc_processes_api_python_client.models.process_list_output import ProcessListOutput

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

# convert the object into a dict
process_list_output_dict = process_list_output_instance.to_dict()
# create an instance of ProcessListOutput from a dict
process_list_output_from_dict = ProcessListOutput.from_dict(process_list_output_dict)

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