Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 1.33 KB

ExecuteWorkflows.md

File metadata and controls

34 lines (27 loc) · 1.33 KB

ExecuteWorkflows

ExecuteWorkflows

Properties

Name Type Description Notes
filter str [optional]
inputs Dict[str, InputWorkflows] [optional]
outputs Dict[str, OutputWorkflows] [optional]
process str [optional]
properties FieldsModifiersProperties [optional]
sort_by List[str] [optional]
subscriber Subscriber [optional]

Example

from unity_sps_ogc_processes_api_python_client.models.execute_workflows import ExecuteWorkflows

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

# convert the object into a dict
execute_workflows_dict = execute_workflows_instance.to_dict()
# create an instance of ExecuteWorkflows from a dict
execute_workflows_from_dict = ExecuteWorkflows.from_dict(execute_workflows_dict)

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