ProcessSummary
Name | Type | Description | Notes |
---|---|---|---|
description | str | [optional] | |
id | str | ||
job_control_options | List[JobControlOptions] | [optional] | |
keywords | List[str] | [optional] | |
links | List[Link] | [optional] | |
metadata | List[MetadataOutput] | [optional] | |
title | str | [optional] | |
version | str |
from unity_sps_ogc_processes_api_python_client.models.process_summary_output import ProcessSummaryOutput
# TODO update the JSON string below
json = "{}"
# create an instance of ProcessSummaryOutput from a JSON string
process_summary_output_instance = ProcessSummaryOutput.from_json(json)
# print the JSON string representation of the object
print(ProcessSummaryOutput.to_json())
# convert the object into a dict
process_summary_output_dict = process_summary_output_instance.to_dict()
# create an instance of ProcessSummaryOutput from a dict
process_summary_output_from_dict = ProcessSummaryOutput.from_dict(process_summary_output_dict)