Process
Name | Type | Description | Notes |
---|---|---|---|
description | str | [optional] | |
id | str | ||
inputs | Dict[str, InputDescriptionInput] | [optional] | |
job_control_options | List[JobControlOptions] | [optional] | |
keywords | List[str] | [optional] | |
links | List[Link] | [optional] | |
metadata | List[MetadataInput] | [optional] | |
outputs | Dict[str, OutputDescriptionInput] | [optional] | |
title | str | [optional] | |
version | str |
from unity_sps_ogc_processes_api_python_client.models.process_input import ProcessInput
# TODO update the JSON string below
json = "{}"
# create an instance of ProcessInput from a JSON string
process_input_instance = ProcessInput.from_json(json)
# print the JSON string representation of the object
print(ProcessInput.to_json())
# convert the object into a dict
process_input_dict = process_input_instance.to_dict()
# create an instance of ProcessInput from a dict
process_input_from_dict = ProcessInput.from_dict(process_input_dict)